{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [],
   "source": [
    "import pandas as pd\n",
    "import numpy as np\n",
    "import datetime as dt\n",
    "import os\n",
    "import re\n",
    "from matplotlib import pyplot as plt\n",
    "from pandas.plotting import register_matplotlib_converters\n",
    "register_matplotlib_converters()\n",
    "import netCDF4 as nc\n",
    "\n",
    "from sqlalchemy.sql import select, and_, or_, not_, func\n",
    "from sqlalchemy import create_engine, Column, String, Integer, Boolean, MetaData, Table, case, between, ForeignKey, desc\n",
    "from sqlalchemy.orm import mapper, create_session, relationship\n",
    "from sqlalchemy.ext.declarative import declarative_base\n",
    "from sqlalchemy.ext.automap import automap_base\n",
    "import sqlalchemy.types as types\n",
    "from sqlalchemy.sql import select, and_, or_, not_, func\n",
    "from time import strptime\n",
    "import string\n",
    "import pandas as pd\n",
    "from dateutil.parser import parse as dutparse\n",
    "\n",
    "%matplotlib inline"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [],
   "source": [
    "basepath='/ocean/eolson/MEOPAR/obs/'\n",
    "basedir=basepath + 'ECBuoy/'\n",
    "dbname='ECBuoy'\n",
    "Base = automap_base()\n",
    "engine = create_engine('sqlite:///' + basedir + dbname + '.sqlite', echo = False)\n",
    "# reflect the tables in salish.sqlite:\n",
    "Base.prepare(engine, reflect=True)\n",
    "# mapped classes have been created\n",
    "FBuoyTBL=Base.classes.FBuoyTBL\n",
    "FlowTBL=Base.classes.FlowTBL\n",
    "session = create_session(bind = engine, autocommit = False, autoflush = True)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "(39812,)\n"
     ]
    }
   ],
   "source": [
    "turbstart=session.query(FlowTBL.DecDay).filter(FlowTBL.MeanTurb>0).order_by(FlowTBL.DecDay).first()\n",
    "print(turbstart)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "datetime.datetime(2009, 1, 1, 0, 0)"
      ]
     },
     "execution_count": 4,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "dt.datetime(1900,1,1)+dt.timedelta(days=turbstart[0])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 14,
   "metadata": {
    "tags": []
   },
   "outputs": [],
   "source": [
    "df=pd.DataFrame(session.query(FlowTBL.DecDay,FlowTBL.RateHope,FlowTBL.MeanTurb).filter(FlowTBL.DecDay>39800).all())\n",
    "df.columns = ['DecDay', 'RateHope', 'MeanTurb']"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 16,
   "metadata": {
    "tags": []
   },
   "outputs": [],
   "source": [
    "dts=[dt.datetime(1900,1,1)+dt.timedelta(days=ii) for ii in df['DecDay']]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 17,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "data": {
      "text/html": [
       "<div>\n",
       "<style scoped>\n",
       "    .dataframe tbody tr th:only-of-type {\n",
       "        vertical-align: middle;\n",
       "    }\n",
       "\n",
       "    .dataframe tbody tr th {\n",
       "        vertical-align: top;\n",
       "    }\n",
       "\n",
       "    .dataframe thead th {\n",
       "        text-align: right;\n",
       "    }\n",
       "</style>\n",
       "<table border=\"1\" class=\"dataframe\">\n",
       "  <thead>\n",
       "    <tr style=\"text-align: right;\">\n",
       "      <th></th>\n",
       "      <th>DecDay</th>\n",
       "      <th>RateHope</th>\n",
       "      <th>MeanTurb</th>\n",
       "    </tr>\n",
       "  </thead>\n",
       "  <tbody>\n",
       "    <tr>\n",
       "      <th>0</th>\n",
       "      <td>39801</td>\n",
       "      <td>688.0</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1</th>\n",
       "      <td>39802</td>\n",
       "      <td>729.0</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>2</th>\n",
       "      <td>39803</td>\n",
       "      <td>930.0</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>3</th>\n",
       "      <td>39804</td>\n",
       "      <td>818.0</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>4</th>\n",
       "      <td>39805</td>\n",
       "      <td>750.0</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>5</th>\n",
       "      <td>39806</td>\n",
       "      <td>770.0</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>6</th>\n",
       "      <td>39807</td>\n",
       "      <td>810.0</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>7</th>\n",
       "      <td>39808</td>\n",
       "      <td>845.0</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>8</th>\n",
       "      <td>39809</td>\n",
       "      <td>900.0</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>9</th>\n",
       "      <td>39810</td>\n",
       "      <td>933.0</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>10</th>\n",
       "      <td>39811</td>\n",
       "      <td>969.0</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>11</th>\n",
       "      <td>39812</td>\n",
       "      <td>1040.0</td>\n",
       "      <td>5.300000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>12</th>\n",
       "      <td>39813</td>\n",
       "      <td>1040.0</td>\n",
       "      <td>4.552174</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>13</th>\n",
       "      <td>39814</td>\n",
       "      <td>1040.0</td>\n",
       "      <td>4.039130</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>14</th>\n",
       "      <td>39815</td>\n",
       "      <td>1000.0</td>\n",
       "      <td>3.612500</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>15</th>\n",
       "      <td>39816</td>\n",
       "      <td>968.0</td>\n",
       "      <td>3.900000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>16</th>\n",
       "      <td>39817</td>\n",
       "      <td>1000.0</td>\n",
       "      <td>4.312500</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>17</th>\n",
       "      <td>39818</td>\n",
       "      <td>1240.0</td>\n",
       "      <td>5.786364</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>18</th>\n",
       "      <td>39819</td>\n",
       "      <td>1270.0</td>\n",
       "      <td>15.336364</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>19</th>\n",
       "      <td>39820</td>\n",
       "      <td>1190.0</td>\n",
       "      <td>42.970833</td>\n",
       "    </tr>\n",
       "  </tbody>\n",
       "</table>\n",
       "</div>"
      ],
      "text/plain": [
       "    DecDay  RateHope   MeanTurb\n",
       "0    39801     688.0        NaN\n",
       "1    39802     729.0        NaN\n",
       "2    39803     930.0        NaN\n",
       "3    39804     818.0        NaN\n",
       "4    39805     750.0        NaN\n",
       "5    39806     770.0        NaN\n",
       "6    39807     810.0        NaN\n",
       "7    39808     845.0        NaN\n",
       "8    39809     900.0        NaN\n",
       "9    39810     933.0        NaN\n",
       "10   39811     969.0        NaN\n",
       "11   39812    1040.0   5.300000\n",
       "12   39813    1040.0   4.552174\n",
       "13   39814    1040.0   4.039130\n",
       "14   39815    1000.0   3.612500\n",
       "15   39816     968.0   3.900000\n",
       "16   39817    1000.0   4.312500\n",
       "17   39818    1240.0   5.786364\n",
       "18   39819    1270.0  15.336364\n",
       "19   39820    1190.0  42.970833"
      ]
     },
     "execution_count": 17,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "df.head(20)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 19,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "data": {
      "image/png": "iVBORw0KGgoAAAANSUhEUgAAA6UAAAD4CAYAAAAU2UDyAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/Il7ecAAAACXBIWXMAAAsTAAALEwEAmpwYAABZuUlEQVR4nO3de5hcVZ0v/O+qqu5OIAkhF0xIJFGJTuJwaDTTkxqxKSc+jToqrRznRZsJo0BoBEbGM2+RyDgyMnYEPTPowUC1ApOMeOFMBFHMgGRSgFYBhotEEDQqIEIEAnkRId11+b1/rL2q9rUu3VW96/L9PM9Op+vWu/bae+31W1clIiAiIiIiIiIKQyTsHSAiIiIiIqLuxaCUiIiIiIiIQsOglIiIiIiIiELDoJSIiIiIiIhCw6CUiIiIiIiIQhMLewcAYNGiRbJy5cqwd4OIiIiIiIia4L777nteRBb7PdcSQenKlSuxZ8+esHeDiIiIiIiImkAp9UTQc+y+S0RERERERKFhUEpEREREREShYVBKREREREREoWFQSkRERERERKFhUEpEREREREShYVBKREREREREoWFQSkRERERE1EqyWWDLFv2zC7TEOqVEREREREQEHYiuXw9MTgK9vcCuXUA8HvZeNRVbSomIiIiIiFpFOq0D0kJB/0ynw96jpmNQSkRERERE1CoSCd1CGo3qn4lE2HvUdOy+S0RERERE1Cricd1lN53WAWmHd90F6ghKlVJRAHsA/E5E3quUWgDg2wBWAngcwF+LyIvWazcDOBNAAcDficitDd5vIiIiIiKizhSPd0UwatTTffcTAH5u+30TgF0isgrALut3KKXWADgNwJsBvAvAViugJSIiIiIiInKoKShVSi0H8FcAvmZ7+BQA26z/bwMwbHv8WyIyISK/AbAPwEBD9paIiIiIiIg6Sq0tpVcASAIo2h57jYg8AwDWz6Osx5cB+K3tdU9ZjzkopTYqpfYopfY899xz9e43ERERERERdYCqQalS6r0AnhWR+2r8TOXzmHgeEBkXkbUisnbx4sU1fjQRERERERF1klomOnobgPcrpd4DYBaAeUqprwP4vVJqqYg8o5RaCuBZ6/VPAXit7f3LATzdyJ0mIiIiIiKizlC1pVRENovIchFZCT2B0X+LyOkAbgZwhvWyMwB81/r/zQBOU0r1KaVeB2AVgHsbvudERERERETU9qazTunnAdyglDoTwJMAPgQAIvKwUuoGAI8AyAM4T0QK095TIiIiIiIi6jhKxDPcc8atXbtW9uzZE/ZuEBERERERURMope4TkbV+z9WzTikRERERERFRQzEoJSIiIiIiotAwKCUiIiIiIqLQMCglIiIiIiKi0DAoJSIiIiIiotAwKCUiIiIiIqLQMCglIiIiIiKi0DAoJSIiIiIiotAwKCUiIiIiIqLQMCglIiIiIiKi0DAoJSIiIiIiotAwKCUiIiIiIqLQMCglIiIiIiKi0DAoJSIiIiIiotAwKCUiIiIiIqLQMCglIiIiIiKi0DAoJSIiIiIiotAwKCUiIiIiIqLQMCglIiIiIiKi0DAoJSIiIiIiotAwKCUiIiIiIqLQMCglIiIiIiKi0DAoJSIiIiIiotAwKCUiIiIiIqLQMCglIiIiIiKi0DAoJSIiIiIiotAwKCUiIiIiIqLQMCglIiIiIiKi0DAoJSIiIiIiotAwKCUiIiIiIqLQMCglIiIiIiKi0DAoJSIiIiIiotAwKCUiIiIiIqLQMCglIiIiIiKi0DAoJSIiIiIiotAwKCUiIiIiIqLQMCglIiIiIiKi0DAoJSIiIiIiotAwKCUiIiIiIqLQVA1KlVKzlFL3KqV+qpR6WCn1z9bjC5RSP1RK/dL6eaTtPZuVUvuUUo8ppU5u5hcgIiIiIiKi9lVLS+kEgL8UkeMB9AN4l1JqHYBNAHaJyCoAu6zfoZRaA+A0AG8G8C4AW5VS0SbsOxEREREREbW5qkGpaC9bv/ZYmwA4BcA26/FtAIat/58C4FsiMiEivwGwD8BAI3eaiIiIiIiIOkNNY0qVUlGl1IMAngXwQxG5B8BrROQZALB+HmW9fBmA39re/pT1mPszNyql9iil9jz33HPT+ApERERERETUrmoKSkWkICL9AJYDGFBK/WmFlyu/j/D5zHERWSsiaxcvXlzTzhIREREREVFnqWv2XRE5CCANPVb090qppQBg/XzWetlTAF5re9tyAE9Pd0eJiIiIiIio89Qy++5ipdR86/+zAbwTwKMAbgZwhvWyMwB81/r/zQBOU0r1KaVeB2AVgHsbvN9ERERERETUAWI1vGYpgG3WDLoRADeIyPeVUlkANyilzgTwJIAPAYCIPKyUugHAIwDyAM4TkUJzdp+IiIiIiIjamRLxDPeccWvXrpU9e/aEvRtERERERETUBEqp+0Rkrd9zdY0pJSIiIiIiImokBqVEREREREQUGgalREREREREFBoGpURERERERBQaBqVEREREREQUGgalREREREREFBoGpURERERERBQaBqVEREREREQUGgalREREREREFBoGpURERERERBQaBqVEREREREQUGgalREREREREFBoGpURERERERBQaBqVEREREREQUGgalREREREREFBoGpURERERERBQaBqVEREREREQUGgalREREREREFBoGpURERERERBQaBqXtJpsFtmzRP4mIiIiIiNpcLOwdoDpks8D69cDkJNDbC+zaBcTjYe8VERERERHRlLGltJ2k0zogLRT0z3Q67D0iIiIiIiKaFgal7SSR0C2k0aj+mUiEvUdERERERETTwu677SQe111202kdkLLrLhERERERtTkGpe0mHmcwSkREREREHYPdd4mIiIiIiCg0DEqJiIiIiIgoNAxKiYiIiIiIKDQMSomIiIiIiCg0DEqJiIiIiIgoNAxKiYiIiIiIKDQMSomIiIiIiCg0DEqJiIiIiIgoNAxKiYiIiIiIKDQMSttNNgts2aJ/EhERERERtblY2DtAdchmgfXrgclJoLcX2LULiMfD3iui9pDNAuk0kEjwuiEiIiJqIQxK20k6rQPSQkH/TKdZuCaqBSt0iIiIiFoWu++2k0RCF6ijUf0zkQh7j4jag1+FDhERERG1BLaUtpN4XLfwsAsiUX1MhY5pKWWFDhEREVHLqBqUKqVeC2A7gCUAigDGReRLSqkFAL4NYCWAxwH8tYi8aL1nM4AzARQA/J2I3NqUve9G8TiDUaJ6sUKHiIiIqGUpEan8AqWWAlgqIvcrpeYCuA/AMIC/BfCCiHxeKbUJwJEicpFSag2AbwIYAHA0gNsBvFFECkF/Y+3atbJnz55GfB8iIiIiIiJqMUqp+0Rkrd9zVceUisgzInK/9f8/APg5gGUATgGwzXrZNuhAFdbj3xKRCRH5DYB90AEqERERERERkUNdEx0ppVYCOAHAPQBeIyLPADpwBXCU9bJlAH5re9tT1mPuz9qolNqjlNrz3HPPTWHXuxTXKSUiIiIiog5S80RHSqk5AHYAuFBEXlJKBb7U5zFPH2ERGQcwDujuu7XuR1fjshZERERERNRhamopVUr1QAek14vI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\n",
      "text/plain": [
       "<Figure size 1152x288 with 1 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "fig,ax=plt.subplots(1,1,figsize=(16,4))\n",
    "ax.plot(dts,df['RateHope']*1e-2,'b.')\n",
    "ax.plot(dts,df['MeanTurb'],'r.');"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 20,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 288x288 with 1 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "fig,ax=plt.subplots(1,1,figsize=(4,4))\n",
    "ax.plot(df['RateHope'],df['MeanTurb'],'k.');"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 21,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [],
   "source": [
    "def gsmooth2(times,Fvals,Tvals,L):\n",
    "    tcrop=times[(~np.isnan(times))&(~np.isnan(Fvals))&(~np.isnan(Tvals))]\n",
    "    outtimes=np.arange(tcrop[0],tcrop[-1])\n",
    "    outvalsF=np.empty(np.shape(outtimes))\n",
    "    outvalsT=np.empty(np.shape(outtimes))\n",
    "    outwghtsF=np.empty(np.shape(outtimes))\n",
    "    outwghtsT=np.empty(np.shape(outtimes))\n",
    "    s=L/2.355\n",
    "    sdict={}\n",
    "    for ii in range(0,len(outtimes)):\n",
    "        t=outtimes[ii]\n",
    "        diff=[abs(x-t) for x in times]\n",
    "        weight=[np.exp(-.5*x**2/s**2) if x <= 3*L else 0.0 for x in diff]\n",
    "        outvalsF[ii]=np.nansum(weight*Fvals)/np.sum(weight*np.array([int(i) for i in ~np.isnan(Fvals)]))\n",
    "        outvalsT[ii]=np.nansum(weight*Tvals)/np.sum(weight*np.array([int(i) for i in ~np.isnan(Tvals)]))\n",
    "        outwghtsF[ii]=np.sum(weight*np.array([int(i) for i in ~np.isnan(Fvals)]))\n",
    "        outwghtsT[ii]=np.sum(weight*np.array([int(i) for i in ~np.isnan(Tvals)]))\n",
    "        #summed weight of 5.3 seems like a good cutoff; close to max for L=5; use .99*max\n",
    "    return(outtimes,np.where(outwghtsF>.99*np.max(outwghtsF),outvalsF,np.nan),np.where(outwghtsT>.99*np.max(outwghtsF),outvalsT,np.nan),outwghtsF,outwghtsT)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 22,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "<ipython-input-21-a2f326ff3abb>:15: RuntimeWarning: invalid value encountered in double_scalars\n",
      "  outvalsT[ii]=np.nansum(weight*Tvals)/np.sum(weight*np.array([int(i) for i in ~np.isnan(Tvals)]))\n"
     ]
    }
   ],
   "source": [
    "tt1,F1,T1,wF1,wT1=gsmooth2(df['DecDay'].values,df['RateHope'].values,df['MeanTurb'].values,2)\n",
    "dts1=[dt.datetime(1900,1,1)+dt.timedelta(days=int(i)) for i in tt1]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 23,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [],
   "source": [
    "tt2,F2,T2,wF2,wT2=gsmooth2(df['DecDay'].values,df['RateHope'].values,df['MeanTurb'].values,33)\n",
    "dts2=[dt.datetime(1900,1,1)+dt.timedelta(days=int(i)) for i in tt2]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 24,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "data": {
      "image/png": "iVBORw0KGgoAAAANSUhEUgAAA6UAAAD4CAYAAAAU2UDyAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/Il7ecAAAACXBIWXMAAAsTAAALEwEAmpwYAABYH0lEQVR4nO3df3ycZZ3v/9c1kzT9SZvSUEpJKWBpS4MgpD913RWQNlDBFQvF3RV3F5tkQld3cVld9hxPlRaC1oNiC2V1F9a2sOy654isrkdBj3qUH0mRLVr4Kq4KwvJDVHQVyMx8vn9c9z1zz+SeySSZZCbJ+/l4zGOSmcnknvua+7quz/XTmRkiIiIiIiIitZCo9QGIiIiIiIjI1KWgVERERERERGpGQamIiIiIiIjUjIJSERERERERqRkFpSIiIiIiIlIzDbU+AIAFCxbY0qVLa30YIiIiIiIiMgb6+/tfMLOWuOfqIihdunQpfX19tT4MERERERERGQPOuR+Xek7Dd0VERERERKRmFJSKiIiIiIhIzSgoFRERERERkZpRUCoiIiIiIiI1o6BUREREREREakZBqYiIiIiIiNSMglIRERERERGpGQWlIiIiIiIi9aSnBxoa/P0UoKBURERERESknuzbB5mMv58CFJSKiIiIiIjUk85OSCb9/RTgzKzWx0B7e7v19fXV+jBERERERERkDDjn+s2sPe65intKnXNJ59zDzrl7gt/nO+e+7Jz7fnDfHHntB5xzP3DOPe6c2zj6jyAiIiIiIiKT0XCG774HOBL5/f3AvWa2DLg3+B3n3KnAVmAVsAnY65xLVudwRUREREREZDKpKCh1zh0PXAB8KvLwRcDtwc+3A2+NPH6nmb1iZv8B/ABYU5WjFRERERERkUml0p7SG4GrgWzksYVm9gxAcH9M8Phi4MnI654KHivgnNvmnOtzzvU9//zzwz1uERERERERmQSGDEqdc5uB58ysv8L3dDGPDVpNycxuNbN2M2tvaWmp8K1FRERERERkMmmo4DWvBy50zp0PTAeOcs7tB551zi0ys2ecc4uA54LXPwW0Rv7+eODpah60iIiIiIiITA5D9pSa2QfM7HgzW4pfwOg+M/tD4G7g8uBllwOfC36+G9jqnGtyzp0ILAMerPqRi4iIiIiIyIRXSU9pKdcDdznn/hT4CbAFwMy+65y7C/gekAZ6zCwz6iMVERERERGRSceZDZruOe7a29utr6+v1ochIiIiIiIiY8A5129m7XHPDWefUhEREREREZGqUlAqIiIiIiIiNaOgVERERERERGpGQamIiIiIiIjUjIJSERERERERqRkFpSIiIiIiIlIzCkpFRERERESkZhSUioiIiIiISM0oKBUREREREZGaUVAqIiIiIiIiNaOgVERERERERGpGQamIiIiIiIjUjIJSERERERERqRkFpSIiIiIiIlIzCkpFRERERESkZhSUioiIiIiISM0oKBUREREREZGaUVAqIiIiIiIiNaOgVERERERERGpGQamIiIiIiIjUjIJSERERERERqRkFpSIiIiIiIlIzCkpFRERERESkZhSUioiIiIiISM0oKBUREREREZGaUVAqIiIiIiIiNaOgVERERERERGpGQamIiIiIiIjUjIJSERERERERqRkFpSIiIiIiIlIzCkpFRERERESkZhSUioiIiIiISM0oKBUREREREZGaUVAqIiIiIiIiNaOgVERERERERGpGQamIiIiIiIjUjIJSERERERERqRkFpSIiIiIiIlIzCkpFRERERESkZoYMSp1z051zDzrnHnHOfdc5tyN4fL5z7svOue8H982Rv/mAc+4HzrnHnXMbx/IDiIiIiIiIyMRVSU/pK8DZZnY6cAawyTm3Dng/cK+ZLQPuDX7HOXcqsBVYBWwC9jrnkmNw7CIiIiIiIjLBDRmUmvfr4NfG4GbARcDtweO3A28Nfr4IuNPMXjGz/wB+AKyp5kGLiIiIiIjI5FDRnFLnXNI59x3gOeDLZvYAsNDMngEI7o8JXr4YeDLy508FjxW/5zbnXJ9zru/5558fxUcQERERERGRiaqioNTMMmZ2BnA8sMY511bm5S7uLWLe81Yzazez9paWlooOVkRERERERCaXYa2+a2a/AL6Gnyv6rHNuEUBw/1zwsqeA1sifHQ88PdoDFRERERERkcmnktV3W5xz84KfZwDnAo8BdwOXBy+7HPhc8PPdwFbnXJNz7kRgGfBglY9bREREREREJoGGCl6zCLg9WEE3AdxlZvc4574N3OWc+1PgJ8AWADP7rnPuLuB7QBroMbPM2By+iIiIiIiITGTObNB0z3HX3t5ufX19tT4MERERERERGQPOuX4za497blhzSkVERERERESqSUGpiIiIiIiI1IyCUhEREREREakZBaUiIiIiIiJSMwpKRUREREREpGYUlIqIiIiIiEjNKCgVERERERGRmlFQKiIiIiIiIjWjoFRERERERERqRkGpiIiIiIiI1IyCUhEREREREakZBaUiIiIiIiJSMwpKRUREREREpGYUlIqIiIiIiEjNKCgVERERERGRmlFQKiIiIiIiIjWjoFRERERERERqRkGpiIiIiIiI1IyCUhEREREREakZBaUiIiIiIiJSMwpKJ5qeHmho8PciIiIiIiITnILSiWbfPshk/L2IiIiIiMgEp6B0ounshGTS34uIiIiIiExwzsxqfQy0t7dbX19frQ9DRERERERExoBzrt/M2uOeU0+piIiIiIiI1IyCUhEREREREakZBaUiIiIiIiJSMwpKRUREREREpGYUlIqIiIiIiEjNKCgVERERERGRmlFQKiIiIiIiIjWjoFRERERERERqRkGpiIiIiIiI1IyCUhEREREREakZBaUiIiIiIiJSMwpKJ5qeHmho8PciIiIiIiITnILSiWbfPshk/L2IVE4NOiIiIiJ1SUHpRNPZCcmkvxeRyqlBR0RERKQuKSidaPbsgXTa34tI5dSgIyIiIlKXhgxKnXOtzrmvOueOOOe+65x7T/D4fOfcl51z3w/umyN/8wHn3A+cc4875zaO5QcQEamIGnRERERE6lIlPaVp4CozWwmsA3qcc6cC7wfuNbNlwL3B7wTPbQVWAZuAvc655FgcvIiIiIiIiExsQwalZvaMmR0Kfv4VcARYDFwE3B687HbgrcHPFwF3mtkrZvYfwA+ANVU+bhEREREREZkEhjWn1Dm3FHgd8ACw0MyeAR+4AscEL1sMPBn5s6eCx4rfa5tzrs851/f888+P4NBFRERERERkoqs4KHXOzQY+C7zXzF4q99KYx2zQA2a3mlm7mbW3tLRUehiibS1ERERERGQSqSgodc414gPSA2b2L8HDzzrnFgXPLwKeCx5/CmiN/PnxwNPVOVzRthYiIiIiIjKZVLL6rgM+DRwxs49FnrobuDz4+XLgc5HHtzrnmpxzJwLLgAerd8hTnLa1EBERERGRScSZDRpZW/gC594AfAM4DGSDh/8aP6/0LmAJ8BNgi5m9GPzNNcCf4Ffufa+ZfbHc/2hvb7e+vr5RfAwRERERERGpV865fjNrj3uuYag/NrNvEj9PFOCc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\n",
      "text/plain": [
       "<Figure size 1152x288 with 1 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "fig,ax=plt.subplots(1,1,figsize=(16,4))\n",
    "ax.plot(dts,df['RateHope']*1e-2,'bx',ms=3)\n",
    "ax.plot(dts,df['MeanTurb'],'ro',ms=2)\n",
    "ax.plot(dts1,F2*1e-2,'k.',ms=1);\n",
    "#ax.plot(dts1,wF1*100,'c+')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 25,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "data": {
      "image/png": "iVBORw0KGgoAAAANSUhEUgAAA6UAAAD4CAYAAAAU2UDyAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/Il7ecAAAACXBIWXMAAAsTAAALEwEAmpwYAABhvklEQVR4nO3dfXxc1X0n/s+ZkcBYtiUbyw4YG0sEbEsCiSCM47S/bQkOGDvQV2wJ02033XYje8Ym6ZaGPLTZ3TbBtkic1xawsZ10G4ofhB/aDXjbZhM7aZMmwZJmJBIe0oQ8QZ4wZBOSpsXW3O/vj3POvefOgzSSZnRnpM/79ZrXSKOZ0Z175557vufhe5SIgIiIiIiIiCgKsag3gIiIiIiIiGYuBqVEREREREQUGQalREREREREFBkGpURERERERBQZBqVEREREREQUmZqoNwAAFi5cKMuXL496M4iIiIiIiKgMBgcHXxGRxnx/q4igdPny5RgYGIh6M4iIiIiIiKgMlFLfK/Q3Dt8lIiIiIiKiyDAoJSIiIiIiosgwKCUiIiIiIqLIMCglIiIiIiKiyDAoJSIiIiIiosgwKCUiIiIiIqLIMCglIiIiIiKiyDAoJSIiIiIiqiTbtwM1Nfp+BmBQSkREREREVEkOHAAyGX0/AzAoJSIiIiIiqiRbtwLxuL6fAZSIRL0N6OzslIGBgag3g4iIiIiIiMpAKTUoIp35/lZ0T6lSKq6USiulTpnfFyilPquU+qa5n+889wNKqW8ppb6hlLp18h+BiIiIiIiIpqPxDN99D4DnnN/fD+C0iFwN4LT5HUqpFgBbALQCuA3APqVUvDSbS0RERERERNNJUUGpUuoKABsAfNJ5+E4Aj5qfHwXwW87jfSLyuoh8B8C3AKwuydYSERERERHRtFJsT+n/BHAfAM95bLGI/AgAzP0i8/gSAC86z3vJPBailOpRSg0opQbOnTs33u0mIiIiIiKiaWDMoFQptRHAyyIyWOR7qjyP5WRTEpGDItIpIp2NjY1FvjURERERERFNJzVFPOctAO5QSt0OYBaAeUqpQwB+opS6TER+pJS6DMDL5vkvAVjqvP4KAD8s5UYTERERERHR9DBmT6mIfEBErhCR5dAJjM6IyO8AeALAO83T3gng0+bnJwBsUUpdrJRqAnA1gLMl33IiIiIiIiKqesX0lBayG8AxpdQfAPg+gC4AEJFnlFLHADwLYATAdhHJTHpLiYiIiIiIaNpRIjnTPadcZ2enDAwMRL0ZREREREREVAZKqUER6cz3t/GsU0pERERERERUUgxKiYiIiIiIKDIMSomIiIiIiCgyDEqJiIiIiIgoMgxKiYiIiIiIKDIMSomIiIiIiCgyDEqJiIiIiIgoMgxKiYiIiIiIKDIMSomIiIiIiCgyDEqJiIiIiIgoMgxKiYiIiIiIKDIMSomIiIiIiCgyDEqJiIiIiIgoMgxKiYiIiIiIKDIMSomIiIiIiCgyDEqJiIiIiIgoMgxKiYiIiIiIKDIMSomIiIiIiCgyDEqJiIiIiIgoMgxKiYiIiIiIKDIMSomIiIiIiCgyDEqJiIiIiIgoMgxKiYiIiIiIKDIMSomIiIiIiCgyDEqJiIiIiIgoMgxKiYiIiIiIKDIMSomIiIiIiCgyDEqJiIiIiIgoMgxKiYiIiIiIKDIMSomIiIiIiCgyDEqJiIiIiIgoMgxKiYiIiIiIKDIMSomIiIiIiCgyDEqJiIiIiIgoMgxKiYiIiIiIKDIMSomIiIiIiCgyDEqJiIiIiIgoMgxKiYiIiIiIKDIMSomIiIiIiCgyYwalSqlZSqmzSqlhpdQzSqk/M48vUEp9Vin1TXM/33nNB5RS31JKfUMpdWs5PwARERERERFVr2J6Sl8HcLOItAPoAHCbUmoNgPcDOC0iVwM4bX6HUqoFwBYArQBuA7BPKRUvw7YTERERERFRlRszKBXtl+bXWnMTAHcCeNQ8/iiA3zI/3wmgT0ReF5HvAPgWgNWl3GgiIiIiIiKaHoqaU6qUiiulhgC8DOCzIvIUgMUi8iMAMPeLzNOXAHjReflL5rHs9+xRSg0opQbOnTs3iY9ARERERERE1aqooFREMiLSAeAKAKuVUm2jPF3le4s873lQRDpFpLOxsbGojSUiIiIiIqLpZVzZd0XkZwC+AD1X9CdKqcsAwNy/bJ72EoClzsuuAPDDyW4oERERERERTT/FZN9tVEo1mJ8vAXALgOcBPAHgneZp7wTwafPzEwC2KKUuVko1AbgawNkSbzcRERERERFNAzVFPOcyAI+aDLoxAMdE5JRS6isAjiml/gDA9wF0AYCIPKOUOgbgWQAjALaLSKY8m09ERERERETVTInkTPeccp2dnTIwMBD1ZhAREREREVEZKKUGRaQz39/GNaeUiIiIiIiIqJQYlBIREREREVFkGJQSERERERFRZBiUEhERERERUWQYlBIREREREVFkGJQSERERERFRZBiUEhERERERUWQYlBIREREREVFkGJQSERERERFRZBiUEhERERERUWQYlBIREREREVFkGJQSERERERFRZBiUEhERERERUWQYlBIREREREVFkGJQSERERERFRZBiUEhERERERUWQYlBIREREREVFkGJQSERERERFRZBiUEhERERERUWQYlBIREREREVFkGJRWm+3bgZoafU9ERERERFTlGJRWmwMHgExG3xMREREREVU5BqXVZutWIB7X90RERERERFVOiUjU24DOzk4ZGBiIejOIiIiIiIioDJRSgyLSme9v7CklIiIiIiKiyDAoJSIiIiIiosgwKCUiIiIiIqLIMCglIiIiIiKiyDAoJSIiIiIiosgwKCUiIiIiIqLIMCglIiIiIiKiyDAoJSIiIiIiosgwKK0yIoKhoSGISNSbQkRERERENGkMSqvM8PAwNm3ahOHh4ag3hYiIiIiIaNIYlFaZ9vZ2nDx5Eu3t7VFvChERERER0aQxKK0yascOdHR2Qu3YEfWmEBERERERTRqD0mpz4ACQyeh7Iire9u1ATY2+JyIiIqKKwaC02mzdCsTj+p6IiscGHSIiIqKKxKC02uzdC4yM6HsiKh4bdIiIiIgq0phBqVJqqVLq80qp55RSzyil3mMeX6CU+qxS6pvmfr7zmg8opb6llPqGUurWcn4AIqKisEGHiIiIqCIV01M6AuBeEVkFYA2A7UqpFgDvB3BaRK4GcNr8DvO3LQBaAdwGYJ9SKl6OjZ+JuE4pEREREdH0NtPq/GMGpSLyIxFJmZ9/AeA5AEsA3AngUfO0RwH8lvn5TgB9IvK6iHwHwLcArC7xds9YXKeUiIiIiGh6m2l1/nHNKVVKLQdwPYCnACwWkR8BOnAFsMg8bQmAF52XvWQey36vHqXUgFJq4Ny5cxPY9JmJ65QSEREREU1vM63OX3RQqpSaA+AkgD8UkddGe2qex3L6nUXkoIh0ikhnY2NjsZtB27cDN9zAZS2IiIiIiKYppRQ6OjqgVL7QavopKihVStVCB6SHReRvzMM/UUpdZv5+GYCXzeMvAVjqvPwKAD8szebS8IED2OR5GOayFkRERERENA0Uk31XAfhLAM+J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\n",
      "text/plain": [
       "<Figure size 1152x288 with 1 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "fig,ax=plt.subplots(1,1,figsize=(16,4))\n",
    "ax.plot(dts,df['RateHope']*1e-2,'bx',ms=3)\n",
    "ax.plot(dts,df['MeanTurb'],'ro',ms=2)\n",
    "ax.plot(dts1,T1,'k.',ms=1);\n",
    "#ax.plot(dts1,wT1*100,'c+')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 26,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 1152x288 with 1 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "dFdt=(F2[1:]-F2[:-1])/(tt1[1:]-tt1[:-1])\n",
    "fig,ax=plt.subplots(1,1,figsize=(16,4))\n",
    "ax.plot(dts,df['RateHope']*1e-2,'bx',ms=3)\n",
    "ax.plot(dts,df['MeanTurb'],'ro',ms=2)\n",
    "ax.plot(dts1,T1,'k.',ms=1)\n",
    "ax.plot(dts1[1:],dFdt,'c+');"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 27,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "data": {
      "image/png": "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xhjDpz/9aaxcuRJDQ0P43Oc+py2fyBwjvI3iu9dccw2q1Sr27t3bk52DNNHf5N5wnpiYcIL9+421a9filVde6Xk9jl2GarUaHnzwwZ7dxoaGhnrSRl1//fVdcc67du0K9ZsEkTZBFuKMj4/3GNni37vvvrtrF85+4J3vfCcsy3IWDXohYkxff/31nvdk7534XKvVCrwzG0FE4Vd/9Vfx0Y9+FN///vdx4sQJnDp1yjGMdbtqykazXIdFqrhbbrkFd955p+Mp/vSnP921AyDQ7os/+clP4gtf+ILzujDggfaaC5GeTpyHNNH/5N5wPnnyZNZFMGb16tX4lV/5FaxatQo//vGPXTtisWBPrPRVt/iMY1vOarWKp556CnfccQdOnDiB888/H7t27dKGX9x+++0AgG984xv43d/9XedvgugnvIzsyclJfOYzn3FdKFtETLL1iFmtN954A08++SSAtmGxevVqNJtNnH/++fjpT3/a5cljjOG6666j7YOJ0IQJq3r++efx/PPPB/6d8847D/v27esZLB84cMAJ7VhYWMCJEyfwqU99CnNzczjvvPOwatUqrF69Gm+++abjbbYsC1u3bsVzzz2He+65B4cOHcKRI0ecrbqDZgIhiknuDeeipKBbtWoVXn311a7XGo0GZmdnu6Y+xQr3NFLXVKtV/P3f/73RZ2+//XYymIllze233473v//9OHDgQFfHOTExgbvuugtf+9rXsi5ibNi2jeuuuw4rVqzAgw8+iBdeeMF5j3Pe05bJ76nptwjCD9VQTjJcijHmrAO69tprnf5W7o//8R//sSvco9Vq4Vvf+hYeffRRx6PMGMPS0hJs23bCPkqlEj74wQ/imWee6QrN2L17N+lhGZF7w/nd73531kUwYmRkpOc1yudIEMVicnJSOytTrVYxMjKCffv24bXXXvPMS1sEms0mDh06hF/84heBvmdZFk1HE4FJc12BmBV5//vf76RbffHFF/GDH/zAM9+6KKO6CLHVajlxzowxbNmyhUIzljm5N5yfffbZTH+/XC53jUx1yIvtCILoT2Sjev/+/fjjP/7jQmf9CWM0i42WyCFA5JlWq4UXXnihaybFDeFRlvt5y7KcmGbOubPwcGlpCfPz8xSascyxsi6AH7rFKmlRq9WwuLiIer2OkZERvPvd78bQ0BDGx8edY2pqCk899RSJ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\n",
      "text/plain": [
       "<Figure size 864x288 with 3 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "fig,ax=plt.subplots(1,3,figsize=(12,4))\n",
    "ax[0].plot(F2,T1,'k.')\n",
    "ax[1].plot(dFdt,T1[1:],'k.')\n",
    "ax[2].plot([max(ff,0) for ff in dFdt],T1[1:],'k.');"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 28,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [],
   "source": [
    "# match unfiltered turbidity to filtered flow time vector:\n",
    "Tu=np.array([df.loc[df.DecDay==elt,['MeanTurb']].values[0][0] for elt in tt2])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 29,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [],
   "source": [
    "# match unfiltered turbidity to filtered flow time vector:\n",
    "Fu=np.array([df.loc[df.DecDay==elt,['RateHope']].values[0][0] for elt in tt2])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 30,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "array([nan, nan, nan, ..., nan, nan, nan])"
      ]
     },
     "execution_count": 30,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "F2"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 31,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "[0.00766221 0.33650788]\n",
      "21.18279628515923\n"
     ]
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 576x288 with 2 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "ii=(~np.isnan(Tu))&(~np.isnan(F2))\n",
    "ii[0]=False # make sure; it will be cut off\n",
    "a=np.vstack([F2[ii],np.ones(len(Tu[ii]))]).T\n",
    "m = np.linalg.lstsq(a,Tu[ii],rcond=None)[0]\n",
    "print(m)\n",
    "fig,ax=plt.subplots(1,2,figsize=(8,4))\n",
    "ax[0].plot(F2,Tu,'k.')\n",
    "ax[0].plot(np.arange(0,10000,1000),m[0]*np.arange(0,10000,1000)+m[1],'r-')\n",
    "ax[0].set_xlabel('Flow')\n",
    "ax[0].set_ylabel('Turb with linear fit')\n",
    "resid=Tu[ii]-np.dot(a,m)\n",
    "SSE=np.sqrt(np.dot((Tu[ii]-np.dot(a,m)),(Tu[ii]-np.dot(a,m)).T)/len(Tu[ii]))\n",
    "print(SSE)\n",
    "ax[1].plot(Tu[ii],np.dot(a,m),'k.')\n",
    "ax[1].plot((0,420),(0,420),'r--');"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 32,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "[0.00738426 1.02491422]\n",
      "20.427928579420215\n"
     ]
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 576x288 with 2 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "ii=(~np.isnan(Tu))&(~np.isnan(Fu))\n",
    "ii[0]=False # make sure; it will be cut off\n",
    "a=np.vstack([Fu[ii],np.ones(len(Tu[ii]))]).T\n",
    "m = np.linalg.lstsq(a,Tu[ii],rcond=None)[0]\n",
    "print(m)\n",
    "fig,ax=plt.subplots(1,2,figsize=(8,4))\n",
    "ax[0].plot(Fu,Tu,'k.')\n",
    "ax[0].plot(np.arange(0,10000,1000),m[0]*np.arange(0,10000,1000)+m[1],'r-')\n",
    "ax[0].set_xlabel('Flow')\n",
    "ax[0].set_ylabel('Turb with linear fit')\n",
    "resid=Tu[ii]-np.dot(a,m)\n",
    "SSE=np.sqrt(np.dot((Tu[ii]-np.dot(a,m)),(Tu[ii]-np.dot(a,m)).T)/len(Tu[ii]))\n",
    "print(SSE)\n",
    "ax[1].plot(Tu[ii],np.dot(a,m),'k.')\n",
    "ax[1].plot((0,420),(0,420),'r--');"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 33,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 432x288 with 1 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "dFdtmatch=dFdt[ii[1:]]\n",
    "ii2=dFdtmatch>0\n",
    "plt.plot(dFdtmatch[ii2],resid[ii2],'k.');"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 34,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "[ 0.00573075  0.34009036 -0.34208405]\n",
      "17.68937810038783\n"
     ]
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 864x288 with 3 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "iTu=Tu[1:]; iF2=F2[1:];\n",
    "ii=(~np.isnan(iTu))&(~np.isnan(iF2)&(~np.isnan(dFdt)))\n",
    "dFdtP=np.array([max(iv,0) for iv in dFdt])\n",
    "a=np.vstack([iF2[ii],dFdtP[ii],np.ones(len(iTu[ii]))]).T\n",
    "m = np.linalg.lstsq(a,iTu[ii],rcond=None)[0]\n",
    "print(m)\n",
    "fig,ax=plt.subplots(1,3,figsize=(12,4))\n",
    "ax[0].plot(F2,Tu,'k.')\n",
    "ax[0].plot(np.arange(0,11000,1000),m[0]*np.arange(0,11000,1000)+m[1],'r-')\n",
    "ax[0].set_xlabel('Flow')\n",
    "ax[0].set_ylabel('Turb with linear fit')\n",
    "resid=iTu[ii]-np.dot(a,m)\n",
    "SSE=np.sqrt(np.dot((iTu[ii]-np.dot(a,m)),(iTu[ii]-np.dot(a,m)).T)/len(iTu[ii]))\n",
    "print(SSE)\n",
    "resid2=iTu[ii]-(m[0]*iF2[ii]+m[2])\n",
    "ax[1].plot(dFdtP[ii],resid2,'k.')\n",
    "ax[1].set_xlabel('max(dFdt,0)')\n",
    "ax[1].set_ylabel('residuals excluding dFdt fit')\n",
    "ax[1].plot(np.arange(0,200),m[1]*np.arange(0,200),'r-')\n",
    "ax[2].plot(iTu[ii],np.dot(a,m),'k.')\n",
    "ax[2].set_xlim(0,420)\n",
    "ax[2].set_ylim(0,420)\n",
    "ax[2].set_xlabel('Observed')\n",
    "ax[2].set_ylabel('Modeled')\n",
    "ax[2].plot((0,420),(0,420),'r--');"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 35,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "[ 0.00575474  0.34071164 -0.47925858]\n",
      "16.89694950261107\n"
     ]
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 864x288 with 3 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "iTu=Tu[1:]; iFu=Fu[1:];\n",
    "ii=(~np.isnan(iTu))&(~np.isnan(iFu)&(~np.isnan(dFdt)))\n",
    "dFdtP=np.array([max(iv,0) for iv in dFdt])\n",
    "a=np.vstack([iFu[ii],dFdtP[ii],np.ones(len(iTu[ii]))]).T\n",
    "m1 = np.linalg.lstsq(a,iTu[ii],rcond=None)[0]\n",
    "print(m1)\n",
    "fig,ax=plt.subplots(1,3,figsize=(12,4))\n",
    "ax[0].plot(Fu,Tu,'k.')\n",
    "ax[0].plot(np.arange(0,11000,1000),m1[0]*np.arange(0,11000,1000)+m1[1],'r-')\n",
    "ax[0].set_xlabel('Flow')\n",
    "ax[0].set_ylabel('Turb with linear fit')\n",
    "resid=iTu[ii]-np.dot(a,m1)\n",
    "SSE=np.sqrt(np.dot((iTu[ii]-np.dot(a,m1)),(iTu[ii]-np.dot(a,m1)).T)/len(iTu[ii]))\n",
    "print(SSE)\n",
    "resid2=iTu[ii]-(m1[0]*iFu[ii]+m1[2])\n",
    "ax[1].plot(dFdtP[ii],resid2,'k.')\n",
    "ax[1].set_xlabel('max(dFdt,0)')\n",
    "ax[1].set_ylabel('residuals excluding dFdt fit')\n",
    "ax[1].plot(np.arange(0,200),m1[1]*np.arange(0,200),'r-')\n",
    "ax[2].plot(iTu[ii],np.dot(a,m1),'k.')\n",
    "ax[2].set_xlim(0,420)\n",
    "ax[2].set_ylim(0,420)\n",
    "ax[2].set_xlabel('Observed')\n",
    "ax[2].set_ylabel('Modeled')\n",
    "ax[2].plot((0,420),(0,420),'r--');"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 36,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "[0.00588415 0.00257168 1.22707881]\n",
      "17.85861729424384\n"
     ]
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 864x288 with 3 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "iTu=Tu[1:]; iF2=F2[1:];\n",
    "ii=(~np.isnan(iTu))&(~np.isnan(iF2)&(~np.isnan(dFdt)))\n",
    "dFdtP=np.array([max(iv,0) for iv in dFdt])\n",
    "a=np.vstack([iF2[ii],dFdtP[ii]*dFdtP[ii],np.ones(len(iTu[ii]))]).T\n",
    "m = np.linalg.lstsq(a,iTu[ii],rcond=None)[0]\n",
    "print(m)\n",
    "fig,ax=plt.subplots(1,3,figsize=(12,4))\n",
    "ax[0].plot(F2,Tu,'k.')\n",
    "ax[0].plot(np.arange(0,11000,1000),m[0]*np.arange(0,11000,1000)+m[1],'r-')\n",
    "ax[0].set_xlabel('Flow')\n",
    "ax[0].set_ylabel('Turb with linear fit')\n",
    "resid=iTu[ii]-np.dot(a,m)\n",
    "SSE=np.sqrt(np.dot((iTu[ii]-np.dot(a,m)),(iTu[ii]-np.dot(a,m)).T)/len(iTu[ii]))\n",
    "print(SSE)\n",
    "resid2=iTu[ii]-(m[0]*iF2[ii]+m[2])\n",
    "ax[1].plot(dFdtP[ii]*dFdtP[ii],resid2,'k.')\n",
    "ax[1].set_xlabel('max(dFdt**2,0)')\n",
    "ax[1].set_ylabel('residuals excluding dFdt**2 fit')\n",
    "ax[1].plot(np.arange(0,200**2),m[1]*np.arange(0,200**2),'r-')\n",
    "ax[2].plot(iTu[ii],np.dot(a,m),'k.')\n",
    "ax[2].set_xlim(0,420)\n",
    "ax[2].set_ylim(0,420)\n",
    "ax[2].set_xlabel('Observed')\n",
    "ax[2].set_ylabel('Modeled')\n",
    "ax[2].plot((0,420),(0,420),'r--');"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## use fit to F and dFdt"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 37,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "[ 0.00573075  0.34009036 -0.34208405]\n",
      "17.68937810038783\n"
     ]
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 864x288 with 3 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "iTu=Tu[1:]; iF2=F2[1:];\n",
    "ii=(~np.isnan(iTu))&(~np.isnan(iF2)&(~np.isnan(dFdt)))\n",
    "dFdtP=np.array([max(iv,0) for iv in dFdt])\n",
    "a=np.vstack([iF2[ii],dFdtP[ii],np.ones(len(iTu[ii]))]).T\n",
    "m = np.linalg.lstsq(a,iTu[ii],rcond=None)[0]\n",
    "print(m)\n",
    "fig,ax=plt.subplots(1,3,figsize=(12,4))\n",
    "ax[0].plot(F2,Tu,'k.')\n",
    "ax[0].plot(np.arange(0,11000,1000),m[0]*np.arange(0,11000,1000)+m[1],'r-')\n",
    "ax[0].set_xlabel('Flow')\n",
    "ax[0].set_ylabel('Turb with linear fit')\n",
    "resid=iTu[ii]-np.dot(a,m)\n",
    "SSE=np.sqrt(np.dot((iTu[ii]-np.dot(a,m)),(iTu[ii]-np.dot(a,m)).T)/len(iTu[ii]))\n",
    "print(SSE)\n",
    "resid2=iTu[ii]-(m[0]*iF2[ii]+m[2])\n",
    "ax[1].plot(dFdtP[ii],resid2,'k.')\n",
    "ax[1].set_xlabel('max(dFdt,0)')\n",
    "ax[1].set_ylabel('residuals excluding dFdt fit')\n",
    "ax[1].plot(np.arange(0,200),m[1]*np.arange(0,200),'r-')\n",
    "ax[2].plot(iTu[ii],np.dot(a,m),'k.')\n",
    "ax[2].set_xlim(0,420)\n",
    "ax[2].set_ylim(0,420)\n",
    "ax[2].set_xlabel('Observed')\n",
    "ax[2].set_ylabel('Modeled')\n",
    "ax[2].plot((0,420),(0,420),'r--');"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 38,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 1152x288 with 1 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "dFdt=(F2[1:]-F2[:-1])/(tt1[1:]-tt1[:-1])\n",
    "fig,ax=plt.subplots(1,1,figsize=(16,4))\n",
    "ax.plot(dts1,Fu*1e-2,'bx',ms=3,alpha=.2)\n",
    "ax.plot(dts1,Tu,'ro',ms=2)\n",
    "ax.plot(dts1[1:],dFdt,'c+',alpha=.2)\n",
    "ax.plot(dts1[1:],m[0]*Fu[1:]+m[1]*dFdtP+m[2],'k-',ms=1)\n",
    "ax.plot(dts1[1:],m1[0]*Fu[1:]+m1[1],'m-',ms=1);"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### make turbidity files"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 44,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [],
   "source": [
    "# do calculations for 2002-2006\n",
    "tstart=dt.datetime(2002,1,1)\n",
    "tend=dt.datetime(2006,12,31)\n",
    "df2=pd.DataFrame(session.query(FlowTBL.DecDay,FlowTBL.RateHope).\\\n",
    "                filter(and_(FlowTBL.DecDay>((tstart-dt.datetime(1900,1,1)).days-40),\n",
    "                    FlowTBL.DecDay<=((tend-dt.datetime(1900,1,1)).days-40))).all())\n",
    "df2.columns = ['DecDay', 'RateHope']"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 40,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [],
   "source": [
    "session.close()\n",
    "engine.dispose()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 41,
   "metadata": {
    "tags": []
   },
   "outputs": [],
   "source": [
    "def gsmooth3(times,Fvals,Tvals,L): # return same size array as inputs\n",
    "    outtimes=np.arange(times[0],times[-1]+1)\n",
    "    outvalsF=np.empty(np.shape(outtimes))\n",
    "    outvalsT=np.empty(np.shape(outtimes))\n",
    "    outwghtsF=np.empty(np.shape(outtimes))\n",
    "    outwghtsT=np.empty(np.shape(outtimes))\n",
    "    s=L/2.355\n",
    "    sdict={}\n",
    "    for ii in range(0,len(outtimes)):\n",
    "        t=outtimes[ii]\n",
    "        diff=[abs(x-t) for x in times]\n",
    "        weight=[np.exp(-.5*x**2/s**2) if x <= 3*L else 0.0 for x in diff]\n",
    "        outvalsF[ii]=np.nansum(weight*Fvals)/np.sum(weight*np.array([int(i) for i in ~np.isnan(Fvals)]))\n",
    "        outvalsT[ii]=np.nansum(weight*Tvals)/np.sum(weight*np.array([int(i) for i in ~np.isnan(Tvals)]))\n",
    "        outwghtsF[ii]=np.sum(weight*np.array([int(i) for i in ~np.isnan(Fvals)]))\n",
    "        outwghtsT[ii]=np.sum(weight*np.array([int(i) for i in ~np.isnan(Tvals)]))\n",
    "        #summed weight of 5.3 seems like a good cutoff; close to max for L=5; use .99*max\n",
    "    return(outtimes,np.where(outwghtsF>.99*np.max(outwghtsF),outvalsF,np.nan),np.where(outwghtsT>.99*np.max(outwghtsF),outvalsT,np.nan),outwghtsF,outwghtsT)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 45,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [],
   "source": [
    "tt,F,T,wF,wT=gsmooth3(df2['DecDay'].values,df2['RateHope'].values,np.ones(np.shape(df2['RateHope'].values)),33)\n",
    "dts=[dt.datetime(1900,1,1)+dt.timedelta(days=int(i)) for i in tt]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 46,
   "metadata": {
    "tags": []
   },
   "outputs": [],
   "source": [
    "dFdt=(F[1:]-F[:-1])/(tt[1:]-tt[:-1])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 47,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [],
   "source": [
    "df2['dFdt']=np.array([np.nan,]+[iel for iel in dFdt])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 48,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [],
   "source": [
    "df2['dFdtP']=[max(ii,0) for ii in df2['dFdt']]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 49,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "(37216, 37216)"
      ]
     },
     "execution_count": 49,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "tt[0],df2['DecDay'][0]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 50,
   "metadata": {
    "tags": []
   },
   "outputs": [],
   "source": [
    "df2['estTurb']=m[0]*df2['RateHope']+m[1]*df2['dFdtP']+m[2]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 51,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Text(0, 0.5, 'Estimated Turbidity (NTU)')"
      ]
     },
     "execution_count": 51,
     "metadata": {},
     "output_type": "execute_result"
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 432x288 with 1 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "plt.plot(df2['DecDay'],df2['estTurb'])\n",
    "plt.xlabel('Decimal Day')\n",
    "plt.ylabel('Estimated Turbidity (NTU)')"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Create Files"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 52,
   "metadata": {
    "tags": []
   },
   "outputs": [],
   "source": [
    "def daterange(start_date, end_date): # end_date not included in range\n",
    "    for n in range(int ((end_date - start_date).days)):\n",
    "        yield start_date + dt.timedelta(n)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 54,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "datetime.datetime(2006, 12, 30, 0, 0)"
      ]
     },
     "execution_count": 54,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "startdate=dt.datetime(2002,1,1)\n",
    "enddate=dt.datetime(2006,12,31)\n",
    "t=[el for el in daterange(startdate,enddate)]\n",
    "t[-1]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 55,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "ERROR: 2006-10-20\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n",
      "<ipython-input-55-22b58ed14028>:22: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_x[:]=f.variables['nav_lat'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:25: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_y[:]=f.variables['nav_lon'][:,:]\n",
      "<ipython-input-55-22b58ed14028>:28: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  new_tc[:]=f.variables['time_counter'][:]\n"
     ]
    }
   ],
   "source": [
    "f=nc.Dataset('/results/forcing/rivers/RLonFraCElse_y2016m01d23.nc') # example for dims\n",
    "fnamebase='/results/forcing/rivers/turbidity_est/riverTurbEst201909_'\n",
    "startdate=dt.date(2002,1,1)\n",
    "enddate=dt.date(2007,1,1)\n",
    "for idate in daterange(startdate,enddate):\n",
    "    iday=(idate-dt.date(1900,1,1)).days\n",
    "\n",
    "    iTurb=df2.loc[df2.DecDay==iday,['estTurb']].values[0][0]\n",
    "    if not iTurb>0:\n",
    "        print('ERROR:',idate)\n",
    "        break\n",
    "\n",
    "    fname=fnamebase+idate.strftime('y%Ym%md%d')+'.nc'\n",
    "\n",
    "    new=nc.Dataset(fname,'w')\n",
    "    #Copy dimensions\n",
    "    for dname, the_dim in f.dimensions.items():\n",
    "        #print (dname, len(the_dim) if not the_dim.isunlimited() else None)\n",
    "        new.createDimension(dname, len(the_dim) if not the_dim.isunlimited() else None)\n",
    "    # create dimension variables:\n",
    "    new_x=new.createVariable('nav_lat',np.float32,('y','x'),zlib=True)\n",
    "    new_x[:]=f.variables['nav_lat'][:,:]\n",
    "\n",
    "    new_y=new.createVariable('nav_lon',np.float32,('y','x'),zlib=True)\n",
    "    new_y[:]=f.variables['nav_lon'][:,:]\n",
    "\n",
    "    new_tc=new.createVariable('time_counter',np.float32,('time_counter'),zlib=True)\n",
    "    new_tc[:]=f.variables['time_counter'][:]\n",
    "    \n",
    "    new_run=new.createVariable('turb',float,('time_counter', 'y', 'x'),zlib=True)\n",
    "    new_run[:,:,:]=-999.99 # most cells are masked with negative numbers\n",
    "    new_run[:,400:448, 338:380]=iTurb # set turbidity to daily average\n",
    "    new_run[:,440:503,363:398]=iTurb # extend Turbidity all the way up river\n",
    "\n",
    "    new.close()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 56,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [],
   "source": [
    "ftest=nc.Dataset('/results/forcing/rivers/turbidity_est/riverTurbEst201909_y2003m01d01.nc')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 57,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "<class 'netCDF4._netCDF4.Dataset'>\n",
       "root group (NETCDF4 data model, file format HDF5):\n",
       "    dimensions(sizes): x(398), y(898), time_counter(1)\n",
       "    variables(dimensions): float32 nav_lat(y, x), float32 nav_lon(y, x), float32 time_counter(time_counter), float64 turb(time_counter, y, x)\n",
       "    groups: "
      ]
     },
     "execution_count": 57,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "ftest"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 58,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "<ipython-input-58-d016a98ee818>:1: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  plt.pcolormesh(ftest.variables['turb'][0,:,:])\n"
     ]
    },
    {
     "data": {
      "text/plain": [
       "<matplotlib.collections.QuadMesh at 0x7f7428929b50>"
      ]
     },
     "execution_count": 58,
     "metadata": {},
     "output_type": "execute_result"
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 432x288 with 1 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "plt.pcolormesh(ftest.variables['turb'][0,:,:])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 59,
   "metadata": {
    "collapsed": false,
    "jupyter": {
     "outputs_hidden": false
    }
   },
   "outputs": [
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "<ipython-input-59-68f316a11536>:1: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.\n",
      "Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations\n",
      "  ftest.variables['turb'][0,410:425,364:368]\n"
     ]
    },
    {
     "data": {
      "text/plain": [
       "masked_array(\n",
       "  data=[[2.65510082, 2.65510082, 2.65510082, 2.65510082],\n",
       "        [2.65510082, 2.65510082, 2.65510082, 2.65510082],\n",
       "        [2.65510082, 2.65510082, 2.65510082, 2.65510082],\n",
       "        [2.65510082, 2.65510082, 2.65510082, 2.65510082],\n",
       "        [2.65510082, 2.65510082, 2.65510082, 2.65510082],\n",
       "        [2.65510082, 2.65510082, 2.65510082, 2.65510082],\n",
       "        [2.65510082, 2.65510082, 2.65510082, 2.65510082],\n",
       "        [2.65510082, 2.65510082, 2.65510082, 2.65510082],\n",
       "        [2.65510082, 2.65510082, 2.65510082, 2.65510082],\n",
       "        [2.65510082, 2.65510082, 2.65510082, 2.65510082],\n",
       "        [2.65510082, 2.65510082, 2.65510082, 2.65510082],\n",
       "        [2.65510082, 2.65510082, 2.65510082, 2.65510082],\n",
       "        [2.65510082, 2.65510082, 2.65510082, 2.65510082],\n",
       "        [2.65510082, 2.65510082, 2.65510082, 2.65510082],\n",
       "        [2.65510082, 2.65510082, 2.65510082, 2.65510082]],\n",
       "  mask=False,\n",
       "  fill_value=1e+20)"
      ]
     },
     "execution_count": 59,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "ftest.variables['turb'][0,410:425,364:368]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 60,
   "metadata": {
    "tags": []
   },
   "outputs": [],
   "source": [
    "ftest.close()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "collapsed": true,
    "jupyter": {
     "outputs_hidden": true
    }
   },
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "anaconda-cloud": {},
  "kernelspec": {
   "display_name": "py38_sqlAlchemy",
   "language": "python",
   "name": "py38_sqlalchemy"
  },
  "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.8.8"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 4
}