{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 1,
   "id": "fd3f86d4-3a0e-426c-af6e-577656927d30",
   "metadata": {},
   "outputs": [],
   "source": [
    "import pandas as pd"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "id": "f4d41b61-41f3-4925-9201-9bf8a251e6b2",
   "metadata": {},
   "outputs": [],
   "source": [
    "df = pd.read_csv('rgi62_stats.csv', index_col=0)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "id": "9abddf93-b14a-4e19-ae60-cd0dd2dabb04",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "(83.5542, -78.2892)"
      ]
     },
     "execution_count": 4,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "df.CenLat.max(), df.CenLat.min()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "id": "5d633509-8d5e-415e-bbcf-5fd129d65a06",
   "metadata": {},
   "outputs": [],
   "source": [
    "df = pd.read_csv('RGI2000-v7.0-G-global-attributes.csv', index_col=0)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "id": "e4578fbc-dd91-446f-ac26-9c34a7841db4",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "(83.6406915, -78.2527785)"
      ]
     },
     "execution_count": 6,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "df.cenlat.max(), df.cenlat.min()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "3a7bd6e9-fad5-430e-b999-00048cc1ef0b",
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3 (ipykernel)",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.13.9"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}
