Using a TRILEGAL file for a given healpix, produce maps with Mr - [Fe/H] priors

Using a TRILEGAL file for a given healpix, produce maps with Mr - [Fe/H] priors#

Version with a subsample of the hipscat TRILEGAL catalog processed with LSDB

[2]:
%matplotlib inline
import numpy as np
import pandas as pd
from dask.distributed import Client
pd.set_option('display.max_columns', None)
[3]:
import os
import shutil
from collections import defaultdict

def delete_files_and_directories(directory):
    # Dictionary to store the count of each file extension
    extension_counts = defaultdict(int)
    file_count = 0
    dir_count = 0

    # Walk through the directory
    for root, dirs, files in os.walk(directory, topdown=False):
        # Delete files and collect their extensions
        for file in files:
            file_path = os.path.join(root, file)
            file_extension = os.path.splitext(file)[1]  # Get file extension
            extension_counts[file_extension] += 1
            os.remove(file_path)
            file_count += 1

        # Delete directories
        for dir in dirs:
            dir_path = os.path.join(root, dir)
            shutil.rmtree(dir_path)
            dir_count += 1

    # Print the results
    print(f'Total files deleted: {file_count}')
    print(f'Total directories deleted: {dir_count}')
    print('File extensions and their counts:')
    for ext, count in extension_counts.items():
        print(f'{ext}: {count}')

    return file_count, dir_count, dict(extension_counts)
[4]:
client = Client(n_workers=96, threads_per_worker=1, memory_limit="auto", dashboard_address=':41987')
client
[4]:

Client

Client-6f5b8ce1-9640-11ef-851a-97b2aeb083b1

Connection method: Cluster object Cluster type: distributed.LocalCluster
Dashboard: http://127.0.0.1:41987/status

Cluster Info

[5]:
%%time
import lsdb
from lsdb.core.search import BoxSearch

trilegal = lsdb.read_hats("/mnt/beegfs/scratch/data/TRILEGAL/TRILEGAL_hats/TRILEGAL_level_5_cluster/", search_filter=BoxSearch(ra=(-53, 61), dec=(-2., 2.)))

trilegal.skymap(lambda df, a: np.log10(len(df)+1), order=9)
/home/seanmcgu/.pyenv/versions/photod/lib/python3.10/site-packages/hats/inspection/visualize_catalog.py:195: UserWarning: This plot contains HEALPix pixels smaller than a pixel of the plot. Some values may be lost
  warnings.warn(
CPU times: user 9.32 s, sys: 1.87 s, total: 11.2 s
Wall time: 6.78 s
[5]:
(<Figure size 1000x500 with 2 Axes>, <WCSAxes: >)
../../_images/pre_executed_data_generation_generate_priors_s82_4_3.png
[10]:
%%time

from photod import priors

def prep(df, pix):
    subdir = f'{rootdir}/{str(pix.order)}'
    rootname = f'{subdir}/{str(pix.pixel)}'

    if not os.path.exists(subdir):
        os.makedirs(subdir)
        print(f'Directory created: {subdir}')
    else:
        print(f"Directory already exists: {subdir}")


    priors.dumpPriorMaps_testing(df, rootname, pix, verbose=False)
    return pd.DataFrame(data=[(pix, len(df))], columns=['HealPix', 'len'])

rootdir = '/mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82'  # TODO: clean this up!

# Perform the deletion and gather statistics
delete_files_and_directories(rootdir)
trilegal.map_partitions(prep, include_pixel=True).compute()
Total files deleted: 5797
Total directories deleted: 2
File extensions and their counts:
.npz: 5589
.txt: 208
Directory created: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/0
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 0, Pixel: 0
---------------------------------------
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
CPU times: user 9.45 s, sys: 7.82 s, total: 17.3 s
Wall time: 38.5 s
[10]:
HealPix len
0 Order: 5, Pixel: 0 68428
0 Order: 5, Pixel: 1 16888
0 Order: 5, Pixel: 2 16430
0 Order: 5, Pixel: 3072 315340
0 Order: 5, Pixel: 3073 69024
... ... ...
0 Order: 5, Pixel: 9214 16127
0 Order: 5, Pixel: 9215 66475
0 Order: 5, Pixel: 12285 67952
0 Order: 5, Pixel: 12286 78620
0 Order: 5, Pixel: 12287 305135

207 rows × 2 columns

CPU times: user 29 s, sys: 12.3 s, total: 41.4 s Wall time: 1min 58s

[11]:
client.close()
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4693
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7509
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4692
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7508
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4516
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5784
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4516
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5784
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4443
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4754
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4443
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4754
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4694
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7510
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4694
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7510
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12285
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4721
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12285
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4721
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4459
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4770
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4459
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4770
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4456
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4765
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4456
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4765
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4698
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7515
---------------------------------------
Directory created: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4698
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5806
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4441
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4751
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4441
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4751
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4691
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7507
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4693
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7509
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4515
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5779
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4705
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4515
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5779
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4716
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4494
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4778
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4494
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4778
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4529
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5799
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4526
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5797
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4497
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4780
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4497
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4780
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4493
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4777
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4466
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4776
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4671
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4671
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4455
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4764
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4455
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4764
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4513
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5775
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4513
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5775
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4546
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5803
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4712
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4546
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5803
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4526
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5797
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4525
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5796
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4460
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4701
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4461
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4772
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4525
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5796
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4524
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5795
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4446
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4757
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4446
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4757
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4695
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7511
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4695
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7511
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4523
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5794
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5806
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4522
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5793
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4520
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4429
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4520
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4711
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4462
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4773
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4462
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4773
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4690
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4437
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4431
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4690
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4437
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4545
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5802
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4545
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5802
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4351
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5801
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4530
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5800
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4707
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4501
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4785
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4501
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4785
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4502
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4786
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4502
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4429
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9213
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4717
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4711
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9213
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4717
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4709
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12286
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12286
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4444
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4755
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4444
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4755
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4457
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4766
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4457
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4766
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4524
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5795
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4528
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5798
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4508
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4434
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4707
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4509
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5773
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4705
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4415
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4506
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4864
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4506
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4864
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4685
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5808
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4702
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4686
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5809
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4713
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4670
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5805
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5810
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7513
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4670
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5805
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4722
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4522
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5793
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4523
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5794
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4700
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4697
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4697
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7513
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4503
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4800
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4503
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4800
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4445
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4756
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4445
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4756
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4507
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4865
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4708
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4507
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4865
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4710
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4495
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4779
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4495
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4779
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4349
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4866
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4435
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4349
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4866
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4781
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4669
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5804
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4669
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5804
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4461
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4772
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4460
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4431
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4498
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4433
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4782
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3074
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7515
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4509
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5773
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 0
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4508
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4434
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4414
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7518
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7518
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4350
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5788
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4414
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4709
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4350
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5788
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4706
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4701
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4712
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4465
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4775
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4465
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4775
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4544
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4436
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4544
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4436
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4689
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7505
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4689
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7505
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4438
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4715
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4438
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4715
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12287
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12287
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3072
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3072
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4500
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4784
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4500
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4784
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4466
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4776
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4493
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4777
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4453
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4762
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4453
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4762
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4505
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4802
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4505
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4802
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4696
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7512
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4696
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7512
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4528
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5798
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4529
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5799
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4510
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5774
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4700
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4510
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5774
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4702
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5810
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4413
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7506
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4413
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7506
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4519
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5787
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4519
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5787
---------------------------------------
Directory created: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4699
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7516
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4699
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7516
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4517
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5785
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4518
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5786
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4518
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5786
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4517
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5785
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 2
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4714
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 2
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4714
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9215
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4720
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9215
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4720
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4439
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4749
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4439
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4749
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4687
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4716
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4687
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 0
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4451
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4760
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4451
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4760
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4692
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7508
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4691
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7507
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3074
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4781
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4498
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4433
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4435
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4686
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5809
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4713
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4685
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5808
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9214
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4718
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4415
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9214
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4718
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4708
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4499
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4499
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4786
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4454
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4763
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4454
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4763
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4514
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5778
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4759
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4514
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5778
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4759
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4450
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4430
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4722
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4706
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4450
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4430
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4782
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4504
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4801
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4504
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4801
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7517
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7517
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4464
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4774
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4464
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4774
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4442
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4753
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4442
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4753
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4452
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4761
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4452
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4761
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4530
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5800
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4710
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4351
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5801
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3073
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4771
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3073
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4771
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4449
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4758
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4449
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4758
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4458
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4769
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4458
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4769
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4440
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4750
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4440
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4750
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4521
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5790
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4521
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/seanmcgu/photod/priors/TRILEGAL/S82/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5790
---------------------------------------
[ ]: