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

[1]:
%matplotlib inline
import pandas as pd
from dask.distributed import Client
pd.set_option('display.max_columns', None)
[2]:
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)
[3]:
client = Client(n_workers=192, threads_per_worker=1, memory_limit="128GB", dashboard_address=':41987')
client
[3]:

Client

Client-9709f16d-b99a-11ef-ad62-31a3df0fc466

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

Cluster Info

[4]:
%%time
import lsdb

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

# trilegal.skymap(lambda df, a: np.log10(len(df)+1), order=9)
CPU times: user 2 s, sys: 599 ms, total: 2.6 s
Wall time: 2.23 s
[5]:
%%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/kmalanch/photod/priors/TRILEGAL'  # 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: 0
Total directories deleted: 0
File extensions and their counts:
Directory created: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/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)
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4349
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12258
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12087
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11784
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11712
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11274
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11229
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11064
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10919
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10790
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10668
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3309
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10332
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10208
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10072
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10039
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10009
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9952
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9865
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9737
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 2060
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9649
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 55
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9474
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1578
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9227
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9189
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9133
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9115
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9089
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9064
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9037
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9005
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8954
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8906
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8855
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8798
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8753
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4288
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12197
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12042
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11722
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11647
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11600
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11567
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11529
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11458
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4114
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11281
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11256
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11168
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11078
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10947
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10658
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10579
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3304
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10190
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3214
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9882
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9442
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9392
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9272
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9211
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9144
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9126
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9104
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9080
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9056
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9026
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8981
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8935
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8880
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8826
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8766
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8710
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8648
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4374
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12284
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12114
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11841
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11790
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11674
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4102
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11204
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11169
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11001
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10895
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10833
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10665
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10475
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10346
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10223
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9909
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9866
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9766
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9722
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9682
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9631
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9566
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9455
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9394
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9178
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9113
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1539
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9058
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8964
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8925
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8864
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8815
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8744
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8685
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1199
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8532
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8427
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4370
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12280
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12099
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11827
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11768
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11464
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11390
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11284
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4097
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11128
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11085
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10879
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3591
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3322
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10378
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10307
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10210
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10138
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10115
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10038
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9709
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9634
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9577
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9214
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9123
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1540
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9067
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1254
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8951
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 48
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8908
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8854
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8795
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8736
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8677
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1198
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8523
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8406
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4309
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12219
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12073
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11687
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11569
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11491
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11428
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11292
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11044
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3618
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10738
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10558
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10438
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10224
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3104
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9819
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9804
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9381
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9196
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9143
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9128
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9105
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9083
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9057
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9028
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8983
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1234
---------------------------------------
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)
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8885
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8878
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8823
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8763
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8708
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8636
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8549
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8479
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8392
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8302
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4293
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12204
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12043
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11652
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11550
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11470
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11408
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11303
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11174
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11009
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10903
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10570
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10524
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10286
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10103
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3212
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3209
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9793
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1665
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9377
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9351
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9314
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1556
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9062
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9015
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8975
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8931
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1226
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8824
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8740
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1207
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8608
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8527
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8449
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8380
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1162
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7968
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1140
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4302
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12213
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12039
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11782
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4147
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4115
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4113
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11348
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11309
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11264
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11122
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10945
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10780
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10642
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10454
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10267
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10010
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9820
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9690
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9185
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9131
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9109
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9084
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9053
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9023
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8973
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8932
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8879
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8828
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8770
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8718
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8645
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8572
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8486
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8401
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8315
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8217
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4261
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12171
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4175
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11706
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11693
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11646
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11583
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11543
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11476
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11424
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11350
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11063
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10976
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10811
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10712
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10554
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10343
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10161
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3084
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3072
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9704
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9623
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9546
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9416
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9254
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9107
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8963
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8922
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8868
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8812
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8750
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8689
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8618
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8544
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8476
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1178
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1169
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8204
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4334
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12245
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4181
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11917
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11880
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11293
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3621
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10874
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10478
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3308
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10298
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10163
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9961
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9857
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9718
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9683
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9639
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1672
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9373
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9370
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9264
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9200
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9118
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9092
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9066
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9038
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9001
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8959
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8916
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8871
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8817
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8759
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1208
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8629
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8533
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8462
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8353
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8237
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4253
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12163
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12004
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11752
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11246
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11186
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11108
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11005
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10805
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10740
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10527
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10357
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10169
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9828
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9698
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9407
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9352
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9257
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9218
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9177
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9121
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9090
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9065
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9040
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9003
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8952
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8913
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8866
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8809
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1212
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8674
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8592
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1191
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8440
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8369
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8303
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8205
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1146
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sampleDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4332
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12243
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12080
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11902
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11786
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11643
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11156
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11104
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10929
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10752
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 65
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10386
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10371
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10219
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10080
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10051
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10013
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9967
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9906
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9721
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9667
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9622
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9527
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9375
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9221
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9110
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8883
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8833
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8775
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8700
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8634
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1195
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8492
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8375
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8290
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1159
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7856
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7804
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4286
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4195
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4178
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11933
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11923
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11501
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10901
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10808
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10643
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3313
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10305
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10239
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10191
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10178
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10165
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 60
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10116
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10105
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9955
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9931
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9799
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9646
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9349
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9145
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9029
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8989
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8938
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8887
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8834
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8777
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8703
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8630
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8566
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8497
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8403
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8320
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8226
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7853
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4327
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12237
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12066
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11862
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4148
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11651
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11624
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11561
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11512
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4119
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11318
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11290
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3658
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11068
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10924
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10794
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10680
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10453
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10342
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10160
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9873
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9716
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9644
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9599
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1562
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9283
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9256
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8976
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8794
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8734
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8669
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8612
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8524
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 43
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8364
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8299
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8193
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7855
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4388
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4214
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12105
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12019
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11911
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4116
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10787
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10763
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10465
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10280
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10050
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9950
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9899
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9372
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9344
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9255
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9212
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9149
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9136
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9122
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9097
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9072
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9044
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9009
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8958
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8909
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8858
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8800
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8743
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8676
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8614
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8542
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8467
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8378
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8258
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8011
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7814
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7786
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4320
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12231
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12053
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11874
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11802
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11616
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11261
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11216
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3652
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10963
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3316
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10491
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10421
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10292
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10121
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9933
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9570
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9357
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9239
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9190
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9082
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9054
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9025
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8978
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8928
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8874
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8816
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8752
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8687
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8619
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8548
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8474
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8387
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1168
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8202
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7866
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7757
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7715
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sampleDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4233
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12145
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11952
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11897
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11249
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3629
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10898
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10705
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10567
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10284
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10060
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9864
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9812
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9767
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1554
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9198
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9170
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9162
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9147
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9134
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1542
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9094
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9034
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8995
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8947
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8907
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8861
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8804
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8746
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8681
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8604
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1192
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1184
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8333
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1158
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7714
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1125
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7587
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4306
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12216
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12065
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4145
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11604
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11581
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 74
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4124
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 73
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11402
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11375
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11137
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11026
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10862
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10626
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10547
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10349
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10144
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9663
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9271
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9209
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9031
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1252
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8940
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8919
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8872
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8821
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8747
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8692
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8615
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8535
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8464
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8370
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8223
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7943
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7809
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7692
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7601
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4336
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4200
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12089
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11955
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11831
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11138
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10821
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10721
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3311
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10334
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10193
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10003
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9977
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9885
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9675
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9559
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1580
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9408
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9374
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9224
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9142
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9043
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9016
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8970
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8930
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8875
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8820
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8758
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8698
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8627
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8567
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8491
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8391
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8312
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8221
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7936
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7795
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7445
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4282
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12192
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12012
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11657
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10939
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10871
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10786
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10634
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10381
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10197
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9888
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9858
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9814
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9769
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9263
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9229
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1548
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9061
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8984
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8941
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8892
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8840
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8782
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8711
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8646
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8573
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8487
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8396
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8316
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8224
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7947
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7787
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7755
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1119
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7489
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 36
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1098
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7384
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4298
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12208
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4179
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11738
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11719
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11692
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11658
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11598
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11522
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11472
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11397
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11320
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11176
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11012
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10908
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10584
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10535
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10258
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9822
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9694
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9152
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9099
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9073
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1282
---------------------------------------
ERROR: no data to make map (see dumpPriorMaps)
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1256
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8999
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8943
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8896
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1223
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8785
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8737
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8673
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8597
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8529
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8448
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 42
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7414
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7405
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4317
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12227
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12068
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4161
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11744
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11721
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11689
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4141
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11589
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11559
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11517
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11459
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11356
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11254
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11190
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11097
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10990
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10730
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10663
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10494
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10350
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10252
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9942
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9816
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 51
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8889
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8827
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8771
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8719
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1203
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1196
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8469
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8379
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8247
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1155
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7835
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7769
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7671
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4355
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12265
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12097
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11787
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11735
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11311
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11277
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11135
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10983
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10846
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10765
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10575
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10347
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10122
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9591
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9197
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9153
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9138
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9124
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9101
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9075
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9047
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9014
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8957
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8914
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8865
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8808
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8739
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8675
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8606
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8534
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8452
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1175
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8211
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7941
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7782
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7442
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7354
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4256
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4192
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11956
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11928
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11342
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10731
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3593
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10496
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3274
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10229
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10227
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10213
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10199
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10180
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10173
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3249
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10127
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9846
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 2056
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9070
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9008
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1250
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1232
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8847
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8807
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8749
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8691
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8624
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8550
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8477
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8398
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8304
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8212
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7863
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7754
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7743
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7567
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7499
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sampleDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4359
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12268
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12108
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11801
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11742
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11527
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4123
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11412
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11379
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11266
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11206
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11053
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10907
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3603
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10652
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10331
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10189
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10016
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9986
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9581
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9243
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9183
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9042
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9011
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8961
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8920
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8860
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1219
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8748
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8671
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8605
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8521
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8445
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8357
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8295
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8028
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7850
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7391
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4236
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4190
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11957
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11929
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11368
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3604
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10711
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10403
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10174
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 56
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9660
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9636
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9534
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1558
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9116
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1538
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9050
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8944
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8895
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8843
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1217
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8726
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8651
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8581
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8510
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8430
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8367
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8294
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8201
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7857
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7753
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1126
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7527
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7514
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7334
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1086
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1071
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6923
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4315
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4198
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12059
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4170
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11855
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11824
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11691
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11331
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 71
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11172
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11124
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10991
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10784
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10724
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10406
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10282
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10032
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9884
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9746
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 2057
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 2048
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1667
---------------------------------------
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)
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9532
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9531
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9330
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9129
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7639
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7622
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7596
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 34
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6931
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6920
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6914
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6907
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4344
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12254
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12077
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4165
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11756
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11737
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11700
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11673
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11631
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11584
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4129
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11487
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11451
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11364
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11146
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11038
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10910
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10715
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10612
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10413
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10202
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9798
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9760
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9497
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9452
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9100
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8311
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8253
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7957
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7828
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7348
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1090
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6913
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6905
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6892
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6883
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6870
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6857
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4249
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12158
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11995
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11894
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11568
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11374
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11315
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11241
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11126
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11027
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10828
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10589
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10460
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10146
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9640
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9249
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8409
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8055
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7875
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1133
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7635
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1120
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7383
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1096
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7046
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6962
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6953
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6951
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6944
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6932
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6921
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6919
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6911
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6900
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6889
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6879
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6866
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6854
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4252
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12162
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11979
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11733
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11252
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11210
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11117
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10979
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10830
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10743
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10538
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10427
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10192
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9776
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3074
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9679
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9574
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9517
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9411
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9002
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8019
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7882
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7375
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1094
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6956
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6949
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6938
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6925
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6917
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6910
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6898
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6886
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6876
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6861
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6846
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6831
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6813
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6789
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sampleDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 89
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12189
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11945
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11795
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10872
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10681
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10568
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10458
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10260
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9966
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9871
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3073
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9677
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9597
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9530
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1579
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9208
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9173
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9164
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9154
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9139
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9125
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9102
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9076
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9051
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9018
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8971
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8929
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8876
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8822
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8760
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8701
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8628
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8564
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1187
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8389
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8276
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8030
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4348
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12257
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12086
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4157
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11729
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11710
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11685
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11640
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11582
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11538
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11477
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11415
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11352
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11234
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11175
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3640
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10970
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10656
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10596
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10380
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10211
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9995
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9948
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9650
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9150
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8761
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8707
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8638
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8545
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8472
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8386
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8277
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8023
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1082
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6826
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6804
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6779
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6759
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4311
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12222
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12047
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11701
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4139
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11588
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11555
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11513
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11439
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4108
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11033
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10985
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10744
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10678
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10510
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10393
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10236
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9878
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3088
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9738
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9727
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9692
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9657
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9610
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9466
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1537
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7698
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7654
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7524
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7081
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6859
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6852
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6836
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6821
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6803
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6785
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6763
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6739
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4389
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4215
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12119
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12028
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11924
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11385
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10904
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10847
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10672
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 64
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10392
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10385
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10188
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9929
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3210
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9712
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9246
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9204
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9071
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9041
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9010
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8960
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8923
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8867
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8814
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 46
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8679
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8621
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8551
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8484
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8400
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8307
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8214
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7877
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7774
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7664
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7475
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7082
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4216
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12127
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11973
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11916
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11663
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10934
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10868
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10772
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10595
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3302
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3253
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3237
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9689
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9251
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9210
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9167
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9161
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 50
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9132
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9108
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9081
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1536
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9024
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8905
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8846
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8789
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8728
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8665
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8596
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8517
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8436
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8328
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8259
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7388
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7359
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6960
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6754
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6736
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4342
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12252
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12090
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11909
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11760
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11232
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11187
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11083
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10968
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10756
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10660
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10394
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10246
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9937
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9836
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9362
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9192
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9120
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9096
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9074
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 49
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1257
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8972
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8967
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8924
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8869
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1220
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1214
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8682
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8600
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8539
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8459
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8372
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8252
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8009
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7841
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7496
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7467
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4299
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12209
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12035
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11748
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4144
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11654
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11630
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11572
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11521
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11466
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11394
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11280
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11039
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10914
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10722
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10587
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10441
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10089
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9557
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9502
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9418
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9180
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8890
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8830
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8767
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8717
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8653
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8579
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8494
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8425
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8360
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8283
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8004
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7422
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1076
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6762
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6743
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6718
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4356
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4202
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12094
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11980
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11834
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11468
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10906
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10827
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3594
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10508
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3297
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10212
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10093
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10066
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3238
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10024
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1574
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9079
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9000
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8946
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8903
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8852
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8796
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8738
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1206
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8594
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8508
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8433
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8358
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8285
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8021
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7831
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7436
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7390
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1081
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6753
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6722
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 30
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4319
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12229
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12076
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11900
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11746
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11625
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11578
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4128
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11461
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11409
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11329
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11198
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3649
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11028
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10507
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10422
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10265
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10106
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10014
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3232
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9916
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9318
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9268
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1216
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8297
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8210
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7867
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7764
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7756
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7462
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7343
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6958
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6824
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6812
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6784
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6761
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6727
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6701
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4338
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12247
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12081
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4167
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11798
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11774
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11620
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4133
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11532
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11497
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11429
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11283
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11057
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10935
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10757
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10670
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10423
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3275
---------------------------------------
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10132
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10130
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10096
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3236
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9993
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9482
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9253
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7608
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7560
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1085
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1061
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6816
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6795
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6774
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6747
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6725
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6700
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6674
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6593
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4345
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12255
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12093
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11907
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11791
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11180
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10781
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10728
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10490
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10365
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10256
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9838
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9724
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9496
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9457
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8897
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7783
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7746
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7586
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1102
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7253
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1083
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6915
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6903
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6893
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6884
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6872
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6858
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6838
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6817
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6798
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6776
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1053
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6735
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6710
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6687
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6660
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6579
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 99
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4206
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12075
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4171
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11777
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11755
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11469
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11388
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11297
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4099
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11099
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11055
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10793
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10687
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10456
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10345
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10184
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9879
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9827
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9707
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9478
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9427
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1135
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7420
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7413
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1084
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6845
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6828
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6809
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6790
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6770
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6746
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6724
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6698
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6670
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6587
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6554
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6522
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4350
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12260
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12088
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11832
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11725
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11307
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11267
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11080
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10915
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10700
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10583
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10370
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10098
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9914
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9876
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9826
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9715
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9555
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9508
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9404
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8482
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7948
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7826
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7766
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7657
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7428
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1077
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1062
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6827
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6801
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6777
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6758
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6741
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6716
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6689
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6661
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1040
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6540
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sampleDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 96
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12259
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12051
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4155
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11730
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11709
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11682
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11642
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11566
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11520
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11453
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11381
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4098
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11163
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11125
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10996
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10791
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10717
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10482
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10277
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10077
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9941
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9910
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9379
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9329
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9291
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8054
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7555
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7546
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1072
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6744
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6711
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1046
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1043
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6583
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6553
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6549
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6512
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4268
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12177
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11984
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11809
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11606
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11050
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11002
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10842
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10778
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10561
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10411
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10271
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10035
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9795
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9699
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9467
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9414
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8918
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7703
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7679
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7513
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7043
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 32
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6882
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6871
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6856
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6842
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6822
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6800
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6780
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6757
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6738
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6715
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6688
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6659
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6575
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6534
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1033
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4291
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12202
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12040
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11488
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11360
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11224
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11134
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10994
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10851
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10774
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10578
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10402
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10198
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9917
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9891
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9802
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9752
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9593
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9515
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9444
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8709
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7649
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7625
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1088
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6847
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6834
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1059
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6796
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6773
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6749
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6729
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6706
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6679
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6600
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6570
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 29
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6500
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6467
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4329
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12239
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12045
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11852
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11761
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4140
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11614
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11585
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11546
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11499
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11432
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11276
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10900
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10814
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10638
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10532
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10330
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10123
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9875
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9495
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9419
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9158
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8560
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8501
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8408
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8324
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8235
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 35
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7362
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1093
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1049
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6665
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6594
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6560
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6528
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6487
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1028
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 95
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12249
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11968
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11854
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11574
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11366
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11310
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11239
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11042
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10938
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10762
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10679
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10399
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10287
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10095
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 57
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9791
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9772
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9655
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9598
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9489
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1576
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8695
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8502
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8432
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8361
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8284
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8017
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7328
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6939
---------------------------------------
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)
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6539
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6538
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6497
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6460
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6425
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6396 Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4365
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12275
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4186
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11858
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11829
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11714
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11490
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11420
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4103
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11140
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11094
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10917
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10684
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10585
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10468
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10200
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3077
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9723
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9678
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9630
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9556
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1575
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9347
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9320
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9279
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9119
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8663
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8617
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8526
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8453
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8377
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1161
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7953
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7821
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7386
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7345
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6954
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6379
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4304
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12215
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12067
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11763
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11670
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11641
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11594
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11557
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11510
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11445
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11347
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11202
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3651
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10972
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10419
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10389
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10186
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9809
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9740
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9348
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9311
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9261
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8240
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7776
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7707
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7559
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7452
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6930
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6705
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6678
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6602
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6567
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6559
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6530
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6489
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6448
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6414
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6378
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4310
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12221
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12072
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11741
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11636
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11602
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11570
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11530
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11465
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11389
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11287
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11226
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11147
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11021
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10891
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10661
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10546
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10374
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10152
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9930
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9447
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9360
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9093
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1228
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8844
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8776
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8713
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8642
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8558
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8468
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8395
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8266
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8026
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7838
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7448
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7411
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7263
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1070
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4235
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 80
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11939
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11918
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11116
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10559
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10522
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10290
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10068
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9852
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9811
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9191
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8192
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7945
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7741
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7543
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7458
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7441
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1075
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6868
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6848
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6835
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6818
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1057
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6775
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1052
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6721
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6691
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6662
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6580
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1037
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6508
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6463
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1026
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6405
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6363
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6305
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6262
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4324
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12235
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12057
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11826
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11753
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11383
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4109
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11275
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11255
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11110
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10999
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10818
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10748
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10488
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10425
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10274
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10071
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9998
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9971
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9755
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9454
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9393
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9219
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9155
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9045
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9012
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8949
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8904
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1224
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8797
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8727
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8661
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8590
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8493
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8426
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8355
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8280
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1154
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4369
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12278
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12122
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11877
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11812
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11668
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11212
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3653
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11019
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3611
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10646
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3300
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10203
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10091
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10070
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 59
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10022
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3234
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9794
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9165
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8921
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8873
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8818
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8751
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8688
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8620
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 44
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8473
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1181
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1171
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8239
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7816
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7781
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7684
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7541
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7385
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7326
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4368
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12277
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12118
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11889
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11823
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11696
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11177
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11088
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10980
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10625
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10573
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10377
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10135
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9880
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9810
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9735
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9435
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1571
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9020
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8891
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8839
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8783
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8723
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8659
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8582
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8496
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8419
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8330
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1164
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7500
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7480
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7379
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7073
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6291
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6272
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6231
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6166
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 292
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4364
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12274
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12125
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11853
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11800
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11683
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11378
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11305
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4100
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11060
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11022
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10807
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10614
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10501
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10233
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10111
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10092
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10075
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10049
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10030
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9983
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9763
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9355
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9323
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9282
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9027
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8366
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8301
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8199
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7858
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7749
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7682
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7482
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7378
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7042
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6359
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6334
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 320
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4237
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12146
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11969
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11888
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11628
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11450
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11387
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11167
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11073
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10942
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10615
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10574
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10250
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9893
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9773
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9710
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9659
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9604
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9470
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9098
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7535
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7520
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7311
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1078
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6686
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6658
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6582
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6536
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6510
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6473
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6441
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6409
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6373
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6330
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6288
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6243
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6200
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6153
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sampleDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4270
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12180
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11971
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11819
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11528
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10863
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3608
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10673
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10391
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10272
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9958
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9851
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 2058
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9226
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9217
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9168
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9095
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9063
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9036
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9004
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8956
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1230
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8870
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8811
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8741
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8683
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1200
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8547
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8446
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8376
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8318
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8218
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7940
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7801
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1101
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1097
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7380
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7364
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4378
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12287
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12107
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11842
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11775
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11645
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11608
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11577
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11534
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11467
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11399
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11291
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3650
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3625
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10405
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10404
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10201
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9825
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9782
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9548
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9448
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9319
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9205
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1163
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8053
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7849
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7464
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7439
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6948
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6563
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6535
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6502
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6466
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6432
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6391
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 326
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 323
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6219
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sampleDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 98
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12279
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12079
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11865
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11732
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11644
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11613
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11573
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11537
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11481
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11422
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11336
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11200
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3648
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10932
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10493
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3310
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10327
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10176
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10040
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10000
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9902
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9748
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9706
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9612
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9537
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1552
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8657
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8557
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8457
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1177
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1166
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8031
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7846
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7431
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7404
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7268
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6955
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4223
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12135
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11994
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11887
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11525
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11250
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11201
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11111
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3619
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10779
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10516
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10396
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10281
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9999
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9859
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9693
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9648
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9605
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9413
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1541
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7724
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7680
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7589
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7446
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7250
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7051
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6505
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6477
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6442
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6404
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6366
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6317
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 313
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6238
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6227
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6183
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6128
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6067
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 92
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12220
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11986
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11713
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11449
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11384
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11191
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11101
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10993
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10713
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3590
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10369
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10234
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10126
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10112
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9939
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9526
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1549
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1202
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8522
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8429
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8336
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1165
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7955
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7837
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1116
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7537
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7523
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7401
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7256
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6946
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6307
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6281
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6237
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6188
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6149
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6085
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6016
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4274
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12184
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12009
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11772
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11115
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3635
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10877
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10518
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10470
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10319
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3247
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9925
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9345
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9195
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9146
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1544
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9117
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1280
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9007
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8990
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1248
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8900
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1221
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8764
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8697
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8631
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8568
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8499
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8413
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8335
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8254
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 40
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7829
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7799
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7652
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7644
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7282
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6904
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4234
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11946
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4168
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10848
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10826
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10564
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10451
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10294
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9981
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 2054
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9203
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1550
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9181
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1546
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9137
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9068
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9039
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8996
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8953
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8910
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8859
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8806
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8755
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8690
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8622
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8553
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8488
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8410
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8331
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8250
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7427
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7409
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7246
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6837
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5861
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5834
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5814
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4328
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12238
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12054
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11839
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11770
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11489
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11427
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11300
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10997
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10865
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3605
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10601
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3301
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10168
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10063
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9946
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9911
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9572
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9479
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9376
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7851
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7394
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7367
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 33
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6515
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6481
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6443
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 512
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6368
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6357
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6311
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6265
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6226
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6190
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6131
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6078
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5979
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5896
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4363
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12273
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12123
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11882
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11817
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11579
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10926
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10876
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10764
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10629
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10352
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10215
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10021
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9988
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9844
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9567
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8788
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1193
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8475
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8371
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8265
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8016
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7357
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6922
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6529
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6493
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6451
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6413
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6376
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6335
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6294
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6254
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6214
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6175
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6113
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6056
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 264
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5800
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4242
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12152
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4174
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11883
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11845
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11632
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11498
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11446
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11271
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11093
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10953
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3597
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10620
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10368
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9965
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9753
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9561
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9465
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9384
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8994
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7590
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7580
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7338
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1063
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6576
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6542
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6503
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6465
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6429
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6387
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6347
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6308
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6266
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6224
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6184
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6119
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6054
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5807
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4244
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12154
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12001
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11879
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11344
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11143
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11052
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10905
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3602
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10635
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10358
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10181
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9764
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9713
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9669
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9621
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9543
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9397
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9276
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9174
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8986
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8939
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8888
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8836
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8774
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8699
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8639
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8577
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8512
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8434
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8325
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8249
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7719
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7675
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7582
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7301
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6908
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5753
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4281
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12191
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12017
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11794
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11369
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11077
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10948
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10602
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10545
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10341
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10083
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9741
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9695
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9629
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9586
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9458
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9395
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1545
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9019
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8902
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8850
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8792
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8731
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8664
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8595
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1190
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8437
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8343
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8271
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8014
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7351
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7292
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6945
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6017
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 281
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5967
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 271
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5743
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4360
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12270
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12121
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11781
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11739
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11516
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4122
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11359
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11319
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11265
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11171
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3633
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10912
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10479
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10431
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10285
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10079
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9867
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9835
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9783
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 2050
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9473
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9439
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9141
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7538
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7528
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7369
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1079
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6389
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6364
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6340
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6293
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6247
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6208
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6168
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6098
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6036
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5935
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4254
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12164
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12002
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11780
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3654
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10820
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10536
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10395
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10134
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9609
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1586
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9135
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9130
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9114
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9086
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9059
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9033
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8993
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8945
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8899
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8849
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8790
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8730
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8666
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8598
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8520
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8439
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8350
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8287
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8029
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7845
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7395
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7358
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7190
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6863
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5968
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5948
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5873
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4283
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12193
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4177
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11686
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11666
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11617
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4131
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4126
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11462
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11425
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11327
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3636
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10911
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10489
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10459
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10311
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10082
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9936
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9883
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9673
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9595
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9503
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9440
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9235
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9085
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8724
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8655
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8580
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1189
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8431
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8342
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8273
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8006
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6781
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6025
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6014
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 278
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5895
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 85
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12149
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11934
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11884
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11365
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11109
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11014
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10801
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10560
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10437
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10291
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9982
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9676
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9406
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1568
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1559
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9242
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9238
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9163
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8982
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8942
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8893
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8841
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8781
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8712
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8650
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8561
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8478
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8388
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8300
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8203
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7861
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7758
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1127
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7536
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7519
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7387
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7317
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4323
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12234
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12061
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11818
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11747
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11185
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11121
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11007
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10792
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10737
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10445
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10315
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10046
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9781
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9702
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9576
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9522
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9391
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9112
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8991
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8948
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8901
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8853
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1218
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8745
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8667
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8589
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8515
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8438
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8346
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8286
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8020
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7839
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7444
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7403
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7305
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7191
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6431
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sampleDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4258
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12167
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 78
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11766
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4149
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4146
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11690
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11667
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11596
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11542
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11493
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11441
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11322
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11160
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10965
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10866
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10753
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10594
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10323
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10128
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3227
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9848
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9654
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9324
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9244
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8678
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8244
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8012
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7832
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7421
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7389
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7237
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6748
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6074
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6047
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5998
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5892
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5667
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4354
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12264
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4185
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11767
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 76
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11717
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11694
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11662
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11599
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11531
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11484
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11407
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11335
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11049
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3632
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10831
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10464
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10372
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10235
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10102
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3242
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10067
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9337
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9309
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8257
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1105
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7429
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7416
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7288
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7041
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 272
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5900
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5853
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5724
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5638
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5501
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5462
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4229
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12140
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11963
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11866
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10880
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10750
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10495
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10416
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10300
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10081
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9756
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9703
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9607
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9549
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9252
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9148
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9048
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9022
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8977
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8936
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8884
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8829
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8769
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8715
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8643
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8565
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1186
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8385
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8251
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8002
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7834
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7415
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7382
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7244
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6462
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5668
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5621
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5569
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4357
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12266
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12098
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11743
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11697
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11669
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11627
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11587
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11540
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11496
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11443
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11285
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11090
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10973
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10675
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10603
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 63
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10218
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3254
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10179
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9934
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9886
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9688
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9600
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9540
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8799
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7793
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7760
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1114
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7363
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7346
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6730
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6103
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6082
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6007
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5745
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5615
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5500
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4314
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12225
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4180
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11869
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11836
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11731
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11405
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11370
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11197
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11075
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10967
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10685
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10604
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10457
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3255
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9849
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9401
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8802
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8505
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8442
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8374
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8310
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1160
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7878
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7803
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7713
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1128
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7585
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7570
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7344
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6794
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6069
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6034
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5925
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5837
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5672
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5614
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 198
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4362
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12272
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12104
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11861
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11789
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11705
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11386
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11323
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11253
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11127
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11008
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10816
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10539
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10367
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10155
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9493
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9206
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8234
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8022
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7819
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7377
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7337
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6819
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 384
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6355
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6353
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6310
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6261
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6222
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6178
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6125
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6051
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5804
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5731
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5680
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 205
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5568
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5502
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sampleDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4294
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12205
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12038
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11672
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11607
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11549
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11508
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11456
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11358
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4101
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11195
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11164
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11079
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10933
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10648
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3584
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10366
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10244
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9731
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9641
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9589
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9288
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9237
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9006
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8444
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8399
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8345
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8270
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8007
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7402
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7185
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6853
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6001
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5981
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5903
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5850
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5655
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5600
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4373
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12283
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12113
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11821
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11773
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11330
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11282
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11208
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11096
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10951
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10703
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10609
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10415
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10117
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 2059
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9504
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9501
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8306
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7553
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7532
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6887
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6456
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6437
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6408
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6367
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6313
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6276
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6233
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6173
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6120
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6068
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5883
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5779
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 224
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5682
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5661
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 204
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5537
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4228
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12139
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4172
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11847
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11820
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11704
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11188
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3641
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10971
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10802
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10709
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10499
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10240
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10109
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10065
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10048
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10028
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9976
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9758
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9529
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9430
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9202
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7815
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7785
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7687
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7576
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7438
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6873
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6325
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6290
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6249
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6204
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 296
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6107
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6059
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5978
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5941
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5835
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4325
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4199
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12060
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11949
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11870
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10988
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3610
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10773
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10420
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3260
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10054
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9584
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1664
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9436
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1572
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8563
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8417
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8339
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8256
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7959
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7794
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7408
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7324
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7047
---------------------------------------
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6073
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6071
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 280
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5886
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5836
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5811
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5777
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5741
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5690
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5629
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5577
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5463
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5331
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5298 Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4218
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12129
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4173
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11878
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11843
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4143
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11533
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11494
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4118
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11295
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11268
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3657
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11048
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10698
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10592
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10418
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10248
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9894
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3079
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9729
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9726
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9684
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9645
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9587
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9383
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9340
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9294
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8801
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7651
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1121
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7262
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7254
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6782
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6152
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6126
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6038
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5595
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5327
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sampleDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4284
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12194
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12016
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4137
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11071
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11024
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10857
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10598
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10520
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10308
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10153
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10086
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9806
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3076
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9460
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1573
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8660
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8531
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1183
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1173
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8264
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8024
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7824
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7396
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7340
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7172
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6797
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5867
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5838
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5817
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5785
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 256
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5721
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5653
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5540
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 183
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5280
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5277
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4289
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12198
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12036
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11681
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11621
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11554
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11506
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11430
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11316
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11065
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10931
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10798
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10701
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10504
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10318
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10207
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3241
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10059
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9400
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9361
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9307
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9223
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7747
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7618
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7472
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7184
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1055
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5877
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5857
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5823
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5801
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5769
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 21
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5695
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5658
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5606
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5538
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5364
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 83
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12131
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11938
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11850
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10966
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10768
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10666
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10382
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10283
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10101
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3233
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9969
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9399
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9171
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8997
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8955
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1229
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8851
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1222
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8772
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8704
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8637
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8536
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8463
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8373
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8255
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8015
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7844
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7521
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7491
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7333
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7273
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1065
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5962
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5933
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5449
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5332
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5266
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4352
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12262
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12092
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11816
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11724
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11173
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11112
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10981
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10834
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10745
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10517
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10466
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10329
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10158
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9987
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9662
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9365
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9297
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9172
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7726
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7706
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7605
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7512
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1080
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7169
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7050
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6172
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6151
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6087
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6020
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5862
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5806
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5772
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5737
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5694
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5639
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5586
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5521
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4351
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12261
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12091
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 77
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11736
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11707
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11678
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11634
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11586
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4130
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11495
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4121
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11328
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11296
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11223
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11037
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10892
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10674
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10549
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10414
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10225
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9872
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9839
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9765
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9539
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9469
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9278
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8390
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7761
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7716
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7447
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7371
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7276
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6768
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5219
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 154
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4881
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4795
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory created: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4387
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4213
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4188
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12030
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11937
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11372
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3589
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10591
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10295
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9545
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9241
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9030
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8656
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8593
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8513
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8435
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8321
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8233
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7455
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7426
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7286
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6957
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6154
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6144
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6052
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5982
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 274
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5869
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5815
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5791
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5754
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5713
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5647
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 202
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5534
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5473
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5157
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4832
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4375
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12285
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12117
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11864
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11814
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11699
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11218
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11151
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10995
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10885
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10819
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10588
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10439
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10142
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9671
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9578
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9509
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9387
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8658
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1185
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8397
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8288
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8196
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7843
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7731
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7666
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7575
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7283
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6750
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5665
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5631
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5583
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5461
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 172
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5320
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5296
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5251
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5197
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sampleDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4380
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4207
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12102
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12008
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11914
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11217
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10562
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10533
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 62
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10131
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10124
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10073
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9889
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9850
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9803
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9562
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9368
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9298
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9230
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8293
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1138
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1131
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7710
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7681
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7552
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7398
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6756
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6133
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6095
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6075
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5842
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 258
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5707
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5641
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5562
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5503
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 165
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5238
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4231
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12143
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11959
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4162
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11230
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4096
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11087
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11040
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10800
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10619
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10461
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10166
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9594
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1581
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9424
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9415
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9017
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7659
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1122
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7255
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7248
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6891
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6356
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6326
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6277
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 26
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6189
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6162
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6096
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6032
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5918
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5824
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5341
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5310
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5175
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 149
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4808
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4761
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4279
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12188
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12021
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11799
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11478
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11258
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11182
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11095
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11013
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10697
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3315
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3298
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10245
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10094
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10043
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10012
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9932
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9854
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9632
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8987
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1123
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7631
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7610
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7235
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6787
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5959
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5928
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5822
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5744
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 213
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5628
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5579
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5451
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5303
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5224
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5155
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4888
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4768
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sampleDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4322
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12233
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12055
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11840
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11771
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11650
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11610
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11541
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4125
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11442
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11401
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11214
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3620
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10856
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10480
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10429
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3257
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9887
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9382
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9317
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9275
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1197
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8207
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7862
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7773
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1129
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7473
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7463
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7280
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6869
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5938
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5919
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5767
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4946
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4902
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4879
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4867
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4770
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4312
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12223
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12049
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11718
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4142
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11637
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11612
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11575
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11535
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11480
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11406
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11324
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11106
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10954
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10795
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10691
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10477
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10304
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10140
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10076
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10033
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10002
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9923
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9786
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 2052
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9550
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9507
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9380
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8613
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8402
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8347
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8263
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8003
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5885
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4900
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4805
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4749
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4695
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4217
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12128
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11988
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11872
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11677
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11448
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11377
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11162
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11074
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10936
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10667
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3585
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10455
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10247
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10055
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3231
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9938
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9900
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9686
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9628
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9571
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9426
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9331
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8705
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7451
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7437
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7274
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6968
---------------------------------------
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)
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5972
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5971
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5917
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5843
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5256
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5196
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5143
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4239
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12148
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11961
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11904
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11086
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10563
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10506
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10316
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10175
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10053
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10004
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3230
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9896
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9779
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9736
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9665
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9619
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1585
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9336
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9333
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8555
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7481
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7469
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7245
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6765
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5950
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5926
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5681
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5491
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5447
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 175
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 17
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5326
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5305
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5269
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5231
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 151
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4778
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4243
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12153
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11985
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11893
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11675
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11560
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11486
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11398
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4107
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11139
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11091
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10923
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10647
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10576
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10376
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10221
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10110
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10088
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10069
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10041
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10018
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 58
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9533
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1584
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9358
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1564
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9293
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9287
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8672
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7593
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1117
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7312
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7308
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6031
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5227
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4936
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4771
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4715
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4307
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12217
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12071
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11715
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11638
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4135
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11562
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11524
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11447
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11382
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11238
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3656
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11076
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3318
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10447
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10409
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10214
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3081
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9747
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9681
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9592
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9535
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9451
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9327
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9193
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8208
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7958
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7779
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7432
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7341
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7181
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6802
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5123
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 146
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4785
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4732
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4629
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4580
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7937
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7790
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1100
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7349
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7336
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6950
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6719
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6696
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6666
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1041
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6545
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6506
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6470
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 28
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6401
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6383
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6333
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6295
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6253
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6213
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6169
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6111
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6048
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6006
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5974
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5899
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5840
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5765
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5693
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 208
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5596
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5505
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 179
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4885
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4809
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4760
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4705
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4610
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4534 Healpix:  Order: 5, Pixel: 6896
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6885
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6874
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6860
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6844
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6829
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6811
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6791
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6771
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6751
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6726
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6704
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6677
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6598
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6566
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6555
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6521
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6482
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6461
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6420
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6388
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6346
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6309
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6264
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6225
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 299
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6127
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6122
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5882
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5590
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5525
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5439
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5270
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4870
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4724
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4675
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4631
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4563
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4497
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4383
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 82
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4187
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11958
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11930
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11262
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10650
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10613
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3305
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10170
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9918
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9732
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9674
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9617
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9521
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9322
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8979
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8292
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8216
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7864
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7772
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7695
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7471
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7381
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6916
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6005
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5994
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 23
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5474
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5445
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5324
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5273
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 158
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5139
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4935
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4776
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4716
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4532
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4321
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12232
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4182
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11835
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11810
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11421
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10817
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10718
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10467
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10303
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10099
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9651
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9615
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9461
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9245
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 41
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1124
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7643
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7626
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7287
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6806
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 275
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5923
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 266
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5780
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5723
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5669
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5575
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5512
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5397
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5230
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4913
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 135
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4728
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4682
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4630
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4560
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4480
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4246
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4191
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4176
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11931
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11922
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11346
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10759
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10710
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10383
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3250
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9728
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9231
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9087
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8857
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8793
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8735
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8670
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8611
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8530
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8456
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8368
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8231
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7952
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7808
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7406
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1095
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7239
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7231
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6760
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5122
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4928
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4796
---------------------------------------
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)
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4746
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4745
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4604
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4240
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12150
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11982
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11903
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11437
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11243
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10943
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10878
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10809
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10682
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10526
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10426
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10226
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9924
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9892
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9666
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 2051
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1582
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9459
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9438
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9207
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7630
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7612
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7232
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6764
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5997
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5977
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5825
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 212
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5646
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5591
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5516
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 180
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5195
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5147
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4788
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4652
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4543
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4255
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12165
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12000
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11792
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11231
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10918
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10845
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10704
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10543
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10296
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3245
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3211
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9290
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8412
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7648
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7620
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7275
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6897
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5870
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5847
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 263
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5776
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5736
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5688
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 206
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5581
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 196
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5401
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5368
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5164
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4929
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4811
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 137
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4752
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4692
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4615
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4558
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4465
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 93
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12230
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12010
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4160
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11034
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10998
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10761
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10702
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10384
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10249
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10085
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10023
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9992
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9847
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 53
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8985
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8934
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8881
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8825
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1215
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8714
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8623
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8537
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8470
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8381
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8261
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8027
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7222
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6833
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5172
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 150
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4880
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 14
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4740
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4690
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 121
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4547
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4445
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 97
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12269
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12050
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11803
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11734
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11485
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11435
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11357
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3628
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10921
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10881
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10747
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10523
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10440
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10242
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9907
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9815
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9739
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1570
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9341
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9303
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8309
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7457
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7440
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7208
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6927
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4939
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4899
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4898
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4873
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 140
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4733
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4683
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4669
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 124
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4540
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4412
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7054
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4222
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12134
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11987
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11873
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11648
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11403
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4110
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11098
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11054
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10796
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10683
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10472
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10373
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10183
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10007
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9975
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9912
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9342
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9305
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9111
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7600
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7591
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7321
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7052
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6329
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6314
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6267
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6220
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6181
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6123
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6061
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5848
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5784
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5732
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5689
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5626
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5564
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5405
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
CPU times: user 21min 10s, sys: 27min 13s, total: 48min 23s
Wall time: 56min 8s
[5]:
HealPix len
0 Order: 5, Pixel: 0 72298
0 Order: 5, Pixel: 1 74223
0 Order: 5, Pixel: 2 72682
0 Order: 5, Pixel: 3 73456
0 Order: 5, Pixel: 4 75190
... ... ...
0 Order: 5, Pixel: 12283 374916
0 Order: 5, Pixel: 12284 311610
0 Order: 5, Pixel: 12285 293858
0 Order: 5, Pixel: 12286 343927
0 Order: 5, Pixel: 12287 321779

8142 rows × 2 columns

Wall time: 56m 8s

[6]:
client.close()
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4232
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12144
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11947
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4164
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10824
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3606
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10525
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10243
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9954
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9868
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9749
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9701
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9568
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9506
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1566
---------------------------------------
ERROR: no data to make map (see dumpPriorMaps)
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7734
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7733
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7595
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7498
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7265
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7168
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6488
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 88
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12179
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11962
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11788
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10810
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10572
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10483
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10263
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3239
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9943
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9364
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8525
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7847
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7788
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7700
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7578
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7400
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6902
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6447
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6423
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6395
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6348
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6312
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6269
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6228
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6192
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6137
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6076
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6049
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5986
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5940
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5383
---------------------------------------
 <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5138
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4647
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 112
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5905
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5430
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 176
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5211
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 153
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4591
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4521
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4455
---------------------------------------
 <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5988
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5947
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5764
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5419
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5391
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6221
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6182
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6132
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6072
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5996
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5922
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5702
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5570
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5480
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 168
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5180
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5141
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4890
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4666
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4624
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4516
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 102
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5740
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5703
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5643
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5554
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5492
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5120
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4884
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4756
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4700
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4633
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4574
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4495
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4422
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4346
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4201
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12084
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11967
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11859
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10960
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10843
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10714
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10552
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10359
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10187
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9759
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9705
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9585
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9525
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9441
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9266
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9035
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8733
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8668
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8609
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8528
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8450
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8354
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8206
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7852
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7763
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7696
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1104
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1091
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7316
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7310
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6063
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5367
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5308
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5213
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4226
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12137
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11942
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11851
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11105
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10858
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10699
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3321
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10401
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10363
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10220
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9685
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9627
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9573
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9417
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9338
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9159
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7704
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7678
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7540
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7213
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4339
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12248
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4184
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11881
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11844
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11653
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11511
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11433
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11340
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11016
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3617
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10641
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10436
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10254
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9962
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9830
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9725
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9487
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9453
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1211
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7647
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7615
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7291
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6875
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5675
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5652
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5609
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5532
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5300
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4592
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4487
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4409
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4897
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5314
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4427
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7278
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7044
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6097
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6084
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5976
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5739
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5506
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5454
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5250
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5142
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4933
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 136
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4696
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4650
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4601
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4474
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 100
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4267
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12176
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11943
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11793
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11062
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10823
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10688
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3312
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10314
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3258
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10147
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9784
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9405
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9354
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9258
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8610
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8411
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8365
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8289
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8048
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7848
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7745
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7685
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7492
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7368
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7300
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6675
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5217
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5165
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4868
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4731
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4684
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4673
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4632
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4572
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4491
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4416
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6422
---------------------------------------
 <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6495
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6457
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1025
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6390
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6351
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6316
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6280
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6234
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6177
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6121
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6050
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5845
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5816
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5757
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5718
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 207
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5547
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5533
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5343
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4901
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4619
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4562
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4452
---------------------------------------

---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6350
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6315
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6270
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6229
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6194
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6136
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6079
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5924
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5775
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5608
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5552
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4340
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12250
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12074
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11868
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11711
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11623
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11565
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11518
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11457
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11343
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11248
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11179
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11070
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10964
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10837
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10716
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10502
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10299
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10185
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9984
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9944
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9554
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9289
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9188
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8574
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8516
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8423
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8308
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8227
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7938
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7796
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7479
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7347
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7203
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6354
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6323
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6275
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 307
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6186
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6129
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6065
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5961
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 269
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5544
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5460
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5330
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5289
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5199
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5149
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4703
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4529
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4454
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4277
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12186
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12022
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11751
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11301
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11257
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11136
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3634
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10875
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10521
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10476
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10301
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10148
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9874
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9588
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9518
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9446
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8966
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7798
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1134
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7632
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7614
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7564
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7252
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6693
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6102
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6077
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5990
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 268
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5561
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5485
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4678
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4527
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4458
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5258
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4406
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5945
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5930
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 216
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5640
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5619
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5565
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5438
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 147
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4712
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4689
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4635
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 118
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4486
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6720
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6877
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6035
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6021
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5913
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 265
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5385
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4257
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12166
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11970
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11758
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11396
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11353
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11184
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11107
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10984
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10815
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3599
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10581
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10351
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10139
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9618
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9498
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9273
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8243
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1130
---------------------------------------
Directory already exists: /mnt/beegfs<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5781
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5750
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5698
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5610
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5520
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4266
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4193
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11948
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11926
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 69
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10631
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel:<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6712
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.Nested/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7669
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7645
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7249
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6862
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6306
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6273
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 306
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6167
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6160
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6092
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6028
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5700
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5588
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 185
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5417
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5412
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 148
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4430
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 214
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5642
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 2
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5585
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 19
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 18
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 177
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5376
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5420
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4384
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4210
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12110
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12023
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11912
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11507
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 66
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10671
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10649
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10486
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10322
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10172
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10061
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9996
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9957
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9754
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9488
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9429
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8543
---------------------------------------
Directory already exists: /mnt/beegfs/scrDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4366
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4203
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12096
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11999
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11905
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11626
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10927
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10882
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10785
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3317
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10340
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10320
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10209
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10141
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10119
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10084
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9972
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3215
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9456
---------------------------------------
Directory already exists: /mnt/beegfsample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6341
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6292
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6246
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6206
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6157
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6106
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6042
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5934
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5858
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5797
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5760
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5722
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5674
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5602
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 197
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5284
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 162
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5218
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5170
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.Neste 3586
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10364
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10231
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9785
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9745
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9680
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9582
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9514
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9423
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8458
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7539
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1110
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7374
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7361
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6959
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5906
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5902
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5548
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5373
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5207
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7494
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7298
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7238
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1042
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5921
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5901
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5831
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5593
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5499
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5408
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5351
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4475
---------------------------------------
Frame'>
Healpix:  Order: 5, Pixel: 6682
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6608
---------------------------------------
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)
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6574
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6573
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6548
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6513
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6474
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6434
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6399
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6362
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 324
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6287
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5943
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5909
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5523
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7728
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7670
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7566
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7236
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1048
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6009
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5995
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5888
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5472
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5370
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5279
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5243
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5166
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4722
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4639
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4575
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4492
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4404
---------------------------------------
dFrame'>
Healpix:  Order: 5, Pixel: 145
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4769
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4707
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4583
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4510
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4446
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4250
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12160
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11993
--Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4260
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12170
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11977
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11688
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11259
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11166
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11081
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10950
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10725
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10623
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, PixelDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4318
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12228
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12063
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11885
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11796
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11635
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11400
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11367
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11129
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11030
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10852
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10607
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10503
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10251
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10120
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10056
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9653
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9579
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9475
---------------------------------------
Directory already exists: /mnt/bee<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7574
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7313
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6793
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4578
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4499
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4426
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4238
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12147
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11964
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1189Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4278
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12187
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12011
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11764
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11011
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 68
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10628
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10605
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10452
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10232
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9797
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9757
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9431
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9346
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7665
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7609
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7229
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6694
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4932
---------------------------------------
Directory already exists: /mnt/beegfs/scratsample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7461
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1073
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6543
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6498
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1029
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6428
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6403
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6360
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6302
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 309
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6223
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6209
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6161
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6093
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6030
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 262
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5714
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5662
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5573
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NesteDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8209
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7874
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7762
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7641
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1103
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7206
---------------------------------------
-------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11749
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11482
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11417
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11326
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11183
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11031
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10937
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10659
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10597
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10428
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10196
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9805
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9768
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9483
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9443
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8323
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7617
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6086
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5382
---------------------------------------
 <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 132
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4569
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4515
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4449
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6597
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4220
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12132
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11992
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11890
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11592
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11376
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11339
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11270
-Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4386
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4212
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12126
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12044
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11925
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11815
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11492
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10956
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10850
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10736
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3320
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10412
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10278
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10058
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9904
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9845
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9770
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9308
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9277
---------------------------------------
Directory already exists: /mnt/beegfs/<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6541
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6507
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6468
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6435
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6394
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6358
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6328
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6285
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6242
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6199
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6150
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6091
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6022
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5751
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5650
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5546
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5478
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5357
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 166
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrameDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4247
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12156
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11997
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11898
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11656
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11414
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11345
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11215
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11158
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11036
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10896
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10693
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10548
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10333
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10078
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9788
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9750
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9664
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9553
---------------------------------------
Directory already exists: /mnt/beegch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4874
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4790
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4729
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4661
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4611
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4537
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 105
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7200
---------------------------------------
 <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5448
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5399
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5306
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5189
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5137
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4561
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6484
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6464
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6419
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6377
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6338
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6297
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6252
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6215
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6174
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6116
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6060
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5659
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5543
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5475
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5283
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5176
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5129
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4893
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4777
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFramDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4381
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4208
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12101
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12018
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11920
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11395
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10838
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10692
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3314
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10297
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3251
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9994
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9486
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9182
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7573
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7562
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7247
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6808
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5916
---------------------------------------
Directory already exists: /mnt/beegfs/scradFrame'>
Healpix:  Order: 5, Pixel: 5495
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5392
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5347
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4904
---------------------------------------
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)
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 141
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4804
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4741
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4660
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4570
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4482
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 101
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5752
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5587
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5484
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5406
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 169
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5156
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4950
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 144
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4878
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4794
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4737
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4607
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 109
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4393
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5402
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5359
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4779
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4721
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4545
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 106
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1170
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8230
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7942
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7800
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7504
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7410
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7339
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7170
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6865
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5725
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5684
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5566
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5498
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4651
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4502
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 91
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12210
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11972
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11702
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11419
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11361
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11209
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11119
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10974
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 67
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10758
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10732
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10400
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10293
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10159
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9997
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9777
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9606
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9516
---------------------------------------
Directory already exists: /mnt/beegfs/scDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4271
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12181
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11975
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4158
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11576
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11548
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11483
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11423
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11333
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11205
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11131
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10955
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10829
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10723
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10515
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10379
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10259
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10104
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10036
---------------------------------------
Directory already exists: /mnt/b<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4941
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4883
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 143
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4789
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4739
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4638
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4520
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4440
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5255
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5191
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5133
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4625
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4489
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6912
---------------------------------------
gfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9385
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1142
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7727
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7723
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7613
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7565
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7322
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6928
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6282
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 308
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6201
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6115
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6070
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5864
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5746
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5697
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5625
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5539
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5414
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6458
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6424
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6393
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6352
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6318
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 310
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6232
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6207
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6156
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6110
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6039
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 277
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5774
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5453
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5424
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5358
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4698
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4618
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4550
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7881
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7777
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7699
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7558
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7425
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6890
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6523
---------------------------------------
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)
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6491
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6483
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6445
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6410
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6375
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6336
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6299
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6245
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6211
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6164
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.Nestedfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9433
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9339
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8559
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7529
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7509
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7302
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7271
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6603
---------------------------------------
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5290
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5288
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5265
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5239
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5167
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4524
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 0
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4554
---------------------------------------
atch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7329
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7319
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7048
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5927
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5915
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5818
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5426
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5394
---------------------------------------
 <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5338
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5297
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 160
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5177
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5135
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4889
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4757
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 131
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4636
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4582
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 111
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4417
---------------------------------------

---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5228
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5171
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4882
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4743
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4686
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4605
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4544
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4473
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4402
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4371
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12281
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12100
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11838
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4154
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11460
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11411
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11325
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11189
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11069
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10952
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10812
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10695
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10540
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10321
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10019
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9837
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9484
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9260
---------------------------------------
Directory already exists: /mnt/beeg<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6909
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6899
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6888
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6878
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1064
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6850
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1060
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6807
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1056
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1054
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6734
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6708
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6685
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6656
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6584
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6544
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1034
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6471
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6433
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFramDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4219
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12130
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11983
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11863
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11440
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11314
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11130
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3622
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10841
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10512
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10432
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10312
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10113
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9974
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9652
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9306
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9215
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7904
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7842
---------------------------------------
Directory already exists: /mnt/beegfs/sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6695
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6667
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6586
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6552
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6517
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6476
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6450
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6416
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 329
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6320
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6283
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6240
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6191
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 25
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6081
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 286
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5666
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 184
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5440
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFr<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5798
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5444
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5415
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5352
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4394
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6769
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6937
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5400
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5388
---------------------------------------
ratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9186
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7640
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7623
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7290
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6895
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5951
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5931
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5761
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5654
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5612
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5541
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 171
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4763
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4710
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4614
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4539
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4433
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5215
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4305
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4197
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12034
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11936
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11825
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11010
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10707
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10530
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10310
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10062
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9908
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9862
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9775
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9720
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9670
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9624
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9544
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9326
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1543
---------------------------------------
Directory already exists: /mnt/beegfs/scrDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4714
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 113
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4396
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7209
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 273
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5852
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5786
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5728
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5685
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5632
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5557
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5488
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5206
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4947
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6867
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5241
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5152
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4685
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4616
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4555
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4453
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6446
---------------------------------------
 <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7228
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7045
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5220
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5210
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4886
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4514
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4447
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6936
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4341
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12251
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12082
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11876
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4152
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11633
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4136
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11571
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11536
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11475
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11413
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11337
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11228
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11153
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11017
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3612
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10624
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3303
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10217
---------------------------------------
Directory already exists: /mnt/beegDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4263
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12173
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11981
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11754
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11393
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11338
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11155
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11043
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3615
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10733
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3307
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10328
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10171
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10029
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9928
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9761
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 2053
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9590
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9565
---------------------------------------
Directory already exists: /mnt/beegfs/<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4405
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5254
---------------------------------------
 <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6094
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6024
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5649
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5545
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5476
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5317
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5259
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5146
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4937
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4803
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4753
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4671
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4594
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4509
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4429
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6324
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6271
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6235
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 300
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6155
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6145
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6057
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5991
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 276
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5803
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5630
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5599
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5455
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5396
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5340
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 159
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4903
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4869
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4866
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.Nested<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5663
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5603
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5509
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7686
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 37
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7456
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7443
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7195
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5601
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5524
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 170
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4802
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4750
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4667
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4548
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 104
---------------------------------------
fs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7594
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7561
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7303
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6668
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5676
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5623
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5571
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5458
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5325
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5278
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5204
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4595
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4538
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4472
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4391
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6569
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4367
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12276
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12112
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11896
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11828
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11665
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11373
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11308
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11245
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11082
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10975
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10755
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10686
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10356
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3262
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3246
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9800
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9228
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9091
---------------------------------------
Directory already exists: /mnt/beegfDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4290
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12201
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12031
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11591
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10941
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10899
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3607
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10644
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10309
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10097
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9991
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9956
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9790
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9601
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9490
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8969
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1108
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7486
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7477
---------------------------------------
Directory already exists: /mnt/beegfs/scr <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6772
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6752
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6728
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6703
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6673
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6590
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6558
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6550
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6518
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6480
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6455
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6417
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6384
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6342
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6300
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6257
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 305
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6176
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6114
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFramDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4276
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4194
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12024
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11932
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4112
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10806
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10776
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10550
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3299
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10156
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9945
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9642
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9259
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8511
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8327
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8242
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7547
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7522
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7505
---------------------------------------
Directory already exists: /mnt/beegfs/scratDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4347
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12256
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12078
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11805
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11684
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11474
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11380
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11298
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11247
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11056
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10957
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10769
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10669
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10398
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10288
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10114
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9963
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9538
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9421
---------------------------------------
Directory already exists: /mnt/bee: 10442
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3240
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9450
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8319
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7691
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7656
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7556
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7306
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6504
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5868
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5839
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5819
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5794
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5763
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5726
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5678
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5582
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5522
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5369
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5178
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4245
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12155
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12005
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11891
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11391
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11219
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11154
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11003
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10873
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10822
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10657
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10471
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10313
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10136
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10005
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9895
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9817
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9751
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9350
---------------------------------------
Directory already exists: /mnt/beegDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4265
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12175
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11965
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11728
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10922
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10883
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10749
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10544
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10449
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10228
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9890
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9855
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3082
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9325
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9247
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8455
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7730
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7677
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7581
---------------------------------------
Directory already exists: /mnt/beegfs/sc<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6053
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6027
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5985
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5939
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5613
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5309
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5192
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5127
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4764
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 125
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 114
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5467
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5287
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5240
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5187
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4783
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4916
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6699
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6683
------------------------------------- <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5272
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5221
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5153
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4738
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4641
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4512
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4331
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12242
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12052
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11886
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1180sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5513
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5291
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4767
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4702
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4623
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4559
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4469
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4397
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4303
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12214
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 79
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11745
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11716
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11679
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11655
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11611
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11553
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11509
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11438
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11351
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11029
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10949
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10617
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10555
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10241
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9973
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9903
---------------------------------------
Directory already exists: /mnt/beegfFrame'>
Healpix:  Order: 5, Pixel: 6101
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6037
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5984
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5809
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5262
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5237
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 155
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6664
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6599
---------------------------------------
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6556
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1038
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6514
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6472
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6439
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6402
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6370
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6322
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6278
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6241
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6195
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6147
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6090
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6018
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5841
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5805
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5742
-----------------------------------Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4385
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4211
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12111
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12025
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11913
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11355
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10653
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3587
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10435
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10273
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9980
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9860
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9560
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9505
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9398
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8420
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7836
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 39
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7674
---------------------------------------
Directory already exists: /mnt/beegfs/scratc5
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11113
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10902
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10771
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10633
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10417
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10216
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9989
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9935
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9734
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1577
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9403
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9369
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9310
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9232
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7729
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7598
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7511
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7261
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7217
---------------------------------------
Frame'>
Healpix:  Order: 5, Pixel: 4774
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4719
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4584
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4505
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4437
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8313
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8238
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7944
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7701
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7470
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7318
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6778
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5508
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5465
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4800
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 13
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 123
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4567
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4462
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4337
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12246
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4183
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11906
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11867
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11221
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11047
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10890
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10739
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10557
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10448
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10230
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9818
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9778
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9542
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9463
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9313
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8607
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7646
---------------------------------------
Directory already exists: /mnt/beegfs/s<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5466
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5344
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5299
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 163
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5229
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5188
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4871
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4519
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4459
---------------------------------------
s/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8886
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8835
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8778
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8706
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8640
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8541
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8451
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8352
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8213
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7817
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7720
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7642
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7577
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7227
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6740
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6717
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6692
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6663
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6585
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6546
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6511
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1030
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6440
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6406
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6371
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6321
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6279
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6239
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6193
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6148
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 289
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6013
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5983
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.Nest<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4413
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6490
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4272
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12182
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12007
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11811
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11269
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10727
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10654
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10474
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3296
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10167
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10017
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9951
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9656
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9157
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8837
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8779
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8722
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8649
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8576
---------------------------------------
Directory already exists: /mnt/beegfs/scsample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7241
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7040
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6198
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6171
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6117
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6058
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5830
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 260
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5747
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5664
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5576
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5517
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5329
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4568
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4481
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4407
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4895
---------------------------------------
gfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9199
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8229
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1156
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7823
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7768
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7676
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7485
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7234
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6864
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6029
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6015
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5954
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5880
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5459
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5428
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5371
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5200
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5124
---------------------------------------
fs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9262
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9213
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1547
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9156
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9106
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9078
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9055
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9021
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8974
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8933
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8882
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8832
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8765
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8684
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1201
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8562
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8461
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8383
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8274
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6792
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 86
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12159
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11941
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4163
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11222
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11203
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11061
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10909
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10742
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10627
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10497
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10302
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10222
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10001
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9960
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9861
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3075
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9696
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9614
---------------------------------------
Directory already exists: /mnt/beegfs/ssample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5294
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5268
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5232
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5158
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 130
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4598
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 116
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4479
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4706
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4541
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4436
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5131
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6099
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6064
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5957
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5898
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5796
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5677
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5651
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 203
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5528
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5469
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4565
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 107
---------------------------------------
7
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11609
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 72
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11302
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11273
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11149
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10969
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10864
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10770
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10586
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10355
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10074
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 54
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9494
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9472
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9151
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7694
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7667
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1113
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7218
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7330
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6681
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 298
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 295
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6105
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 287
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5980
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5911
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5854
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5366
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5334
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5276
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5181
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4949
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4865
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 139
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 134
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4681
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4637
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
HDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4251
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12161
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11996
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11765
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11523
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11473
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11404
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11332
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11132
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11035
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10855
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10664
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10551
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10410
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3261
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3235
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9511
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8588
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7501
---------------------------------------
Directory already exists: /mnt/beegf <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7533
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7459
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1087
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6843
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6823
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1058
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6783
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6755
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6731
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6707
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6680
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6592
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6561
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1035
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1032
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6449
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6412
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6372
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6327
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFra>
Healpix:  Order: 5, Pixel: 4431
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8693
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8626
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8552
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8485
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8404
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8322
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8222
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7497
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7474
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7352
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7179
---------------------------------------
'>
Healpix:  Order: 5, Pixel: 5267
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5246
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5179
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4697
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4606
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4546
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4477
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5126
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12199
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12033
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11698
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11639
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11580
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11539
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11471
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11410
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11306
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11165
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10920
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10840
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10690
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10511
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10339
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10164
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9919
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9840
---------------------------------------
Directory already exists: /mnt/beegfh/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7655
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7299
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6906
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5992
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5973
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5468
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5393
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5346
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5168
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4940
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4812
---------------------------------------
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4782
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4780
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4603
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1069
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4762
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6952
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5960
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5944
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5567
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5362
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4781
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4659
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4493
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4377
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12286
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12109
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4159
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11778
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11750
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11371
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11312
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11220
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11100
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10925
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3595
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10606
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10387
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10151
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 2064
---------------------------------------
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9481
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9477
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.cratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7621
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7285
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6926
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6216
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6197
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6146
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6089
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6011
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5563
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5372
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4620
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4444
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4930
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6469
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6427
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6385
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6345
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6303
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6259
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6230
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6187
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6134
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6080
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6045
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5833
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5550
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5477
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5302
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5248
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5184
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5128
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4742
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.Nessample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4747
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4704
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 119
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4494
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7174
---------------------------------------
e'>
Healpix:  Order: 5, Pixel: 6397
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 328
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6331
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6118
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6088
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5691
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5342
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5316
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 16
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5130
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4934
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4872
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4787
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4727
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4621
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 117
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4476
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4241
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12151
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11990
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11910
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11671
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10989
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10916
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10849
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10694
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10529
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10335
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9853
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9841
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9332
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8483
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7453
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7434
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7296
---------------------------------------
Directory already exists: /mnt/beegfs/scra<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5813
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5715
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5670
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5592
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 195
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 178
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5378
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6256
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6026
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6003
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5965
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5875
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5687
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5637
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 199
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5494
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 181
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5386
---------------------------------------
e'>
Healpix:  Order: 5, Pixel: 6040
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5894
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5810
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5607
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5553
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5395
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1024
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6374
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6332
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6289
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6250
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 304
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6165
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 291
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6041
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 282
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5910
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 267
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5260
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5194
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 15
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4793
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4748
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4654
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4526
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4297
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12207
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12029
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4138
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3637
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11020
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10754
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10566
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10338
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10149
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9915
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9711
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9661
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9608
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9513
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1251
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7495
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1107
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7397
---------------------------------------
Directory already exists: /mnt/beegfs/scraDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4442
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4772
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4333
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12244
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12056
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11915
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11808
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11141
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10640
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10577
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10353
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10177
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9922
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9877
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9733
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9620
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9551
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9378
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9295
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8332
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7517
---------------------------------------
Directory already exists: /mnt/beegfs/scDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4259
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12168
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11966
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11708
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10766
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10719
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10424
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3259
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9926
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9420
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9265
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8803
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8382
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8326
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8241
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7178
---------------------------------------
cratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9520
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9220
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8228
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7750
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7690
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7508
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7412
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7360
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7074
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5966
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5949
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5782
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5443
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5411
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5333
---------------------------------------
atch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7946
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7812
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7603
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7563
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7281
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6849
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5964
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5942
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5771
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5441
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5413
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5335
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4709
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4501
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4398
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8194
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4670
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4571
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4463
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4775
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5878
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 22
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5812
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5787
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5755
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5719
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5645
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5531
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5470
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4816
---------------------------------------
ERROR: no data to make map (see dumpPriorMaps)
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4717
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4708
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4644
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4586
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4490
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4414
---------------------------------------
ealpix:  Order: 5, Pixel: 4576
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4500
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4418
---------------------------------------
s/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7490
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7392
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7293
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6880
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5929
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5914
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5859
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5580
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5515
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5375
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5205
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4316
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12226
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12064
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11849
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11726
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11595
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11552
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11502
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11426
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11278
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10940
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10839
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3600
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10531
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10276
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9970
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9807
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9524
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9285
---------------------------------------
Directory already exists: /mnt/beegffs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10057
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10027
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9985
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9672
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9356
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9286
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9233
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8721
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8298
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8215
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7873
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7778
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7629
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7542
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7215
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 156
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4608
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4536
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4424
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5350
---------------------------------------
scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9492
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9422
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8962
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7739
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7717
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7606
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7526
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7297
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7189
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 24
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5193
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5163
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4765
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4679
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4590
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4525
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4456
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 325
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4227
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12138
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11953
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11837
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11237
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10861
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10804
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10637
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10481
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10289
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3243
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3213
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1561
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1560
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9269
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1555
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9103
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9052
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9032
---------------------------------------
Directory already exists: /mnt/beegfs/scsample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6841
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6825
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6810
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6788
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6767
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6745
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6723
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6697
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6672
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6588
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6557
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6533
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6499
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6459
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6426
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6398
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6361
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6337
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6296
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6248
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6205
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6163
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6112
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6046
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5890
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5720
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5634
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5536
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5481
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5301
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5209
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5140
---------------------------------------
tch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 270
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5354
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5321
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5292
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5247
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5198
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4655
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4435
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7180
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6742
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4581
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4517
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4460
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1067
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7708
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7697
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1112
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7356
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7342
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7204
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4269
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12178
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11991
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11785
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11615
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11193
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11157
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11058
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10897
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10746
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10582
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10463
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10204
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9843
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9801
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9315
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9160
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8447
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8405
---------------------------------------
Directory already exists: /mnt/beegfssample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7810
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1137
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7693
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7662
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7544
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7225
---------------------------------------
ratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8489
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8415
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8337
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8262
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7964
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7258
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7257
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6714
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 279
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5958
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5844
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5598
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5483
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5407
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5318
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5203
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4938
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4508
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5349
---------------------------------------
scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7833
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7740
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7653
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7572
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7233
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6601
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5932
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5920
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5846
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 259
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5711
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5657
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 200
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5497
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5452
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5384
---------------------------------------
s/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9169
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7939
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1144
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7476
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7465
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7284
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6732
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5876
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5856
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5826
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 261
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5770
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5704
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 209
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5605
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5518
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5377
---------------------------------------
ame'>
Healpix:  Order: 5, Pixel: 5427
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5337
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4791
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4640
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4622
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4518
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4400
---------------------------------------
tch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7393
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7196
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6657
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5304
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5271
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5242
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5160
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4773
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4688
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4573
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4513
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4448
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6496
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4894
---------------------------------------
eegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10008
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3226
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9829
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9485
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9274
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7705
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1118
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7493
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7484
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1099
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7216
---------------------------------------
--------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11196
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11059
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10959
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10803
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10708
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10514
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10253
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10108
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10042
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10020
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9920
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9697
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9547
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9468
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9334
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7860
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7399
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7373
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7194
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4280
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12190
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12015
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4153
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11118
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3638
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3614
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10706
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10407
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3256
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9869
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1563
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9284
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9270
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8968
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8465
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8421
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8305
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8220
---------------------------------------
Directory already exists: /mnt/beegfs/scratcDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4248
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12157
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11976
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11901
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11547
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11354
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11299
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11235
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11067
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10958
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10835
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10735
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10519
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10408
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10257
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10011
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9927
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9831
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9626
---------------------------------------
Directory already exists: /mnt/beeDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4224
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4189
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11950
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11927
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10853
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10569
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10487
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10279
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10118
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9964
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9719
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9564
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9528
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9432
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9175
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7732
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7711
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7579
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7460
---------------------------------------
Directory already exists: /mnt/beegfs/scras/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8988
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7722
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7702
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7604
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7483
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7188
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6564
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5788
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5749
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5709
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5611
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5510
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5295
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 133
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4664
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4628
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4530
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4457
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5226
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6839
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6820
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6805
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6786
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6766
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1051
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6709
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1045
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6595
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6568
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1036
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6501
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6454
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6421
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6392
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6344
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6301
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6255
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6217
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NesDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4273
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12183
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12013
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11822
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11242
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10676
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10636
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10450
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10264
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3208
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9708
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9359
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9316
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1557
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8768
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1210
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8644
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8540
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8454
---------------------------------------
Directory already exists: /mnt/beegfs/scr<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5717
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5673
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5551
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5490
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5293
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5235
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5183
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4723
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4609
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4531
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4439
---------------------------------------
tedFrame'>
Healpix:  Order: 5, Pixel: 4643
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4528
---------------------------------------
ratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8980
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8937
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1227
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8831
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8756
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8702
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8635
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8570
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8498
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1180
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8334
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8248
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7661
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7624
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7226
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 90
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12200
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11989
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11526
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11286
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11244
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11161
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11072
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10928
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10608
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10553
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10238
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9949
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9921
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9371
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9236
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9166
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8950
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8912
---------------------------------------
Directory already exists: /mnt/beegfs/scDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4372
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12282
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12124
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11813
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11762
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11392
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4111
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11159
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11123
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10961
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10799
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10677
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10513
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10360
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10269
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9990
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9796
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1666
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1569
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9328
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9299
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8514
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7488
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7466
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7372
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6733
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5891
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5874
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5792
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5748
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5710
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5617
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5527
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5431
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5244
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 142
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4390
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6537
---------------------------------------
ch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7309
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7272
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6814
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5778
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5738
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5696
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5648
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5572
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5504
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5387
---------------------------------------
ratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7269
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6494
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5345
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5313
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 164
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5216
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5173
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4892
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4720
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 128
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4627
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4579
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4507
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4441
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4736
---------------------------------------
h/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7872
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7784
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7634
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7554
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7289
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6690
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5365
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5328
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5222
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4896
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4674
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4626
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4557
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4470
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5274
---------------------------------------
gfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9367
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9216
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9069
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8894
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8838
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8780
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8716
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 45
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8569
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8506
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8416
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8351
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8269
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8018
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6083
---------------------------------------
tch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7186
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6669
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5390
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5356
---------------------------------------
s/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9743
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9510
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9449
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8773
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7820
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7780
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7688
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7548
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7433
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7417
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7240
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6894
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6002
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5987
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5872
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5422
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5380
---------------------------------------
atch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8362
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8219
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1147
---------------------------------------
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
ERROR: no data to make map (see dumpPriorMaps)
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7797
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7791
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7628
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7557
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7219
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4343
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12253
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12085
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11908
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4156
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11260
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11225
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11152
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7830
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1089
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7279
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7267
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6581
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5174
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5151
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4891
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4701
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 126
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4600
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 110
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4403
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5150
---------------------------------------
ratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8863
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8810
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8762
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8696
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8632
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8575
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8509
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8414
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8340
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8268
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8000
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7177
---------------------------------------
/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8356
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8267
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7965
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7530
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1106
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7251
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7243
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6851
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5793
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5758
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5716
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5633
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5556
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5493
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5201
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5132
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4634
---------------------------------------
atch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7221
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1068
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4718
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4646
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4585
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4483
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4401
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5245
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 87
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12169
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11940
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11720
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10944
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10888
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3598
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10542
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10337
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10154
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9953
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9464
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9353
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9127
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1258
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8992
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1249
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8911
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8842
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8786
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8720
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8654
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8578
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8500
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8418
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8338
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8260
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7954
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7771
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7712
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7507
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7424
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7355
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7214
---------------------------------------
ratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7175
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6947
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5907
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5893
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5410
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5225
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4596
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5355
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5312
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5275
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5214
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5144
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7751
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 38
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7515
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7502
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7407
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7304
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7192
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1027
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4420
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4353
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12263
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12103
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11833
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11776
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11431
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11004
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10782
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10726
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10492
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10354
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 61
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10026
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10006
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9611
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9512
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9176
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7584
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7571
---------------------------------------
Directory already exists: /mnt/beegfs/sscratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7880
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7611
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7569
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7264
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6737
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4912
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4875
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4806
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4755
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4693
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 122
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4551
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4451
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6380
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6799
---------------------------------------
Order: 5, Pixel: 6562
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6524
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6485
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1031
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6436
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6407
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6369
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 322
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6263
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6043
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6019
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5936
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5889
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 210
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5471
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5429
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 174
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5257
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5252
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5202
-----------------------------sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6713
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6684
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6624
---------------------------------------
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)
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6578
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6577
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6551
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6520
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6479
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6444
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6411
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 330
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 27
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6284
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6258
---------------tedFrame'>
Healpix:  Order: 5, Pixel: 6180
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6124
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6055
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5656
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5514
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5457
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5281
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5233
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5186
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4687
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4471
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4292
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12203
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12037
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11519
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4117
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11313
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11289
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11192
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11084
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10978
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10734
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10651
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10485
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10325
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10157
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10045
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9856
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9787
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9742
---------------------------------------
Directory already exists: /mnt/beegDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4275
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12185
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12006
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11783
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11227
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10870
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10797
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10632
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10473
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10255
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10037
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9905
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9842
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9762
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9425
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9389
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8877
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8647
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8586
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7332
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6830
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6196
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6158
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6100
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 284
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5963
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5884
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5558
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5487
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5148
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4877
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4694
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4649
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4599
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4496
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4410
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 283
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 94
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12240
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12003
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11875
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11288
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11023
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10894
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10696
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10565
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3306
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10262
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10052
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9947
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9901
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9480
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9434
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9060
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7607
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7597
---------------------------------------
Directory already exists: /mnt/beegfs/scr--
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6604
---------------------------------------
ERROR: no data to make map (see dumpPriorMaps)
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6572
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6571
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6547
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6516
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6475
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6438
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6400
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6365
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 321
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6260
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5989
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5956
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5820
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5549
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5489
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5282
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5236
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5185
---------------------------------------
------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6212
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 297
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6109
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6066
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6012
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5946
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5865
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5733
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5679
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5616
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5560
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5425
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5263
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4663
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4588
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4504
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4425
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4230
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12142
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11954
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11856
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11150
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10962
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10869
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3601
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10593
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10336
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10107
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9870
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9833
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9774
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9558
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9499
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9412
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9088
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7854
---------------------------------------
Directory already exists: /mnt/beegfs/scDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4264
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12174
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11960
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11723
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10854
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10813
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10600
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10509
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10324
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10195
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3244
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10090
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9445
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9402
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9077
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8927
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8862
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8813
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8754
---------------------------------------
Directory already exists: /mnt/beegfs/s015
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10859
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10611
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10537
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10275
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9823
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9637
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9187
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1209
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8652
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8556
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8466
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8393
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1167
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8197
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7859
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7737
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7668
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7583
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7212
---------------------------------------
tch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6929
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5795
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5773
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5734
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5692
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5635
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5584
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5519
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5416
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4300
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12211
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12032
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11727
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11659
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11629
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11564
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11515
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11452
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11321
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11148
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10977
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10867
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10777
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10610
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10433
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10162
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9808
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9658
---------------------------------------
Directory already exists: /mnt/beDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4308
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12218
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12070
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11664
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11563
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11503
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11418
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4104
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11114
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11066
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10887
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10775
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10590
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10430
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10025
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9428
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9184
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1139
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1136
---------------------------------------
Directory already exists: /mnt/beegf----------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5134
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7376
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1074
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5975
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5952
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5904
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5622
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5261
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5169
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4944
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4807
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4758
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4754
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4656
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4564
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4466
---------------------------------------
ratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7822
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7735
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7660
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1115
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7266
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7260
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5832
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4792
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4725
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 120
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4523
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 103
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7049
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4330
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12241
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12062
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4166
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11804
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11779
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11597
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11213
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11178
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11041
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10946
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10741
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10621
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10444
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10145
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9519
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9225
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8296
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7813
---------------------------------------
Directory already exists: /mnt/beegfegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9304
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9194
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7825
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7792
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7658
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7516
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7207
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7076
---------------------------------------
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)
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4658
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4657
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4577
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4488
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4415
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5360
---------------------------------------
s/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7748
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7718
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1109
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7435
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7418
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7223
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6901
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5121
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4931
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4801
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4751
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4672
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4566
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4498
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4428
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 31
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6918
---------------------------------------
me'>
Healpix:  Order: 5, Pixel: 6286
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6244
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6203
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6159
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6108
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 285
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5969
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5863
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5799
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5766
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5727
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5683
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5578
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5511
---------------------------------------
fs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9668
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9613
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9523
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9248
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8757
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8546
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8471
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8394
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8291
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8200
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1145
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7736
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7725
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7602
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7545
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7277
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7201
---------------------------------------
e'>
Healpix:  Order: 5, Pixel: 4711
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4553
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4467
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4392
---------------------------------------
s/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9335
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9302
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8591
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7468
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7454
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7171
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6815
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5482
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5446
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5315
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5264
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5190
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5125
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4676
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4556
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4484
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4408
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4593
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5161
---------------------------------------
cratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8694
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8625
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8554
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8481
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8407
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8317
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8225
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1152
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7789
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7721
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7588
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7525
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7307
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7211
---------------------------------------
s/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7744
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7638
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7449
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7320
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7202
---------------------------------------
cratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8504
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1182
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8363
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8275
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8013
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1047
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6008
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5993
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5871
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5442
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5409
---------------------------------------
atch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7419
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7199
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6840
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5339
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5311
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5253
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5208
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5136
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5322
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8571
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8490
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1179
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8329
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8232
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1044
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1039
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6531
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6486
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6452
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6415
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6381
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6343
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6304
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6268
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6218
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6185
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 294
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 288
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6023
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5999
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5937
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5829
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5479
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5433
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5361
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4864
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4713
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4665
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4602
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4511
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4443
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4296
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12206
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12041
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4134
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11463
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11416
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11334
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11181
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11089
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10982
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3588
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10580
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3263
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10064
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9643
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9596
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9296
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9250
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1188
---------------------------------------
Directory already exists: /mnt/beegfs/s
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4419
---------------------------------------
cratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8314
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8195
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7865
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7742
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7709
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7599
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7478
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7220
---------------------------------------
 <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7775
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1132
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1111
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7510
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7503
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7430
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7327
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7198
---------------------------------------
edFrame'>
Healpix:  Order: 5, Pixel: 5912
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5860
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5496
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5450
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5374
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5285
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5223
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5162
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 138
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4691
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4642
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4587
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 108
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4295
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4196
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12048
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11944
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11871
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10893
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10789
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10618
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10446
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10182
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9780
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9730
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9647
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9603
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9396
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8587
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8198
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7884
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7767
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7752
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7487
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7366
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7075
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6138
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 293
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 290
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6033
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6004
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5879
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5808
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5768
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5730
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5686
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 20
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5574
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5526
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5389
---------------------------------------
----
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5701
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5644
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 201
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 194
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5456
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5421
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5363
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4379
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4205
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12106
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12014
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11892
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11199
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10992
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10913
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10832
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10655
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10469
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10326
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10133
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9959
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9913
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9691
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9625
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9569
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9390
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9281
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9240
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8998
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8633
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8584
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8519
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8441
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8341
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8272
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8005
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5908
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4382
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4209
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12116
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11974
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11921
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11622
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11102
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11046
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10788
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10645
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10434
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10268
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9978
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3080
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9583
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9471
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9410
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9179
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8845
---------------------------------------
Directory already exists: /mnt/beegfs/sDirectory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4326
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12236
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12058
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11848
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11759
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11618
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4132
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4127
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11479
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11444
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11363
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11211
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11120
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10987
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10783
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10720
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10500
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10348
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10266
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10044
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9898
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9821
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9771
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9321
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9292
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9049
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7802
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7770
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7663
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7506
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7205
---------------------------------------
cratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8787
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8729
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8662
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8599
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8507
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8422
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1174
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8282
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8052
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7370
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7230
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4361
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12271
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12115
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11797
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4150
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11619
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11590
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11551
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11504
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11454
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11341
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 70
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11051
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11000
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10844
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10767
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10556
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10362
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3252
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9700
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9343
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9301
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7672
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7314
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6671
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5529
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5464
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4786
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4668
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 115
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4423
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4461
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4313
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12224
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12069
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11860
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11757
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11676
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 75
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11593
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11558
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11514
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4120
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4106
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11279
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11251
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11142
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11032
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10886
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10662
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10534
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10375
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10125
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3078
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 2049
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9536
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9491
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9222
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7738
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7627
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7568
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7224
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4287
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12196
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12020
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11703
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11294
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11240
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11145
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11045
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3616
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10729
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10462
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10344
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3248
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3083
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9388
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9386
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 52
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 47
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8784
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8725
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1204
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8585
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8495
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8424
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8349
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8279
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1157
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7350
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7335
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7176
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1050
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4744
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4677
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4552
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4478
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4399
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4421
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 84
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12141
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11935
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11857
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11436
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11304
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11018
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3609
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10616
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10388
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10087
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9602
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9552
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8926
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8384
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1172
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8236
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7956
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7811
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7353
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7323
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7193
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6478
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4730
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4653
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4613
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4506
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4395
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7072
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5851
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5828
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5802
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 257
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5729
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5660
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5597
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5507
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5435
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7840
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7765
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7689
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7423
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7331
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7183
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4262
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12172
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11978
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11740
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11233
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11194
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11092
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11006
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3592
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10630
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10397
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10237
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9897
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9863
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9813
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9744
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9363
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9312
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9234
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9013
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8641
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8583
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8503
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8428
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8348
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8281
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8025
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7173
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6509
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 193
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 182
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5418
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5404
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5145
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 127
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4522
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5319
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6676
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6596
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6565
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6532
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6492
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6453
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6418
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6382
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6339
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6298
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6251
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6210
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6170
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6104
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6044
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5955
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5821
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5436
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5403
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5212
---------------------------------------
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7365
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6924
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5970
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5953
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5866
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5559
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 192
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5154
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4948
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4887
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4810
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4759
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 129
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4589
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4533
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4464
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5307
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4680
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4225
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12136
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11951
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11846
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10836
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3596
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10498
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10306
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10205
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10143
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10129
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10100
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10047
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10031
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9979
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9834
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9616
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9462
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1553
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7683
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7650
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7531
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7242
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6881
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5783
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5756
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5706
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5620
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5542
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5434
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4221
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12133
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11998
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11899
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11601
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11362
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11317
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11236
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11144
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11025
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10884
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10599
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10484
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10261
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10034
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9940
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9824
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1551
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9046
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8965
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8915
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8856
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8805
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8742
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8680
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8616
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1194
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8480
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8359
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8245
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1153
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7818
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7759
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7673
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7518
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7182
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5336
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 167
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 161
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 157
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5159
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4945
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4876
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4784
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4726
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4612
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4542
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4450
---------------------------------------
 <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4503
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4434
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5379
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4335
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 81
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12083
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4169
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11830
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11806
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11556
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11263
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11207
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11133
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3623
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10825
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10505
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10390
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10270
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10015
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9792
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9717
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9575
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9541
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9437
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9300
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7619
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7295
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6855
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5627
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5589
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5437
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5381
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5249
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5353
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4376
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4204
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12120
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12026
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11919
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11272
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10639
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10571
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10361
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10150
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9638
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9366
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9140
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8898
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8848
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8791
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8732
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1205
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8602
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8518
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8443
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8344
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8278
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8008
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7187
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1066
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5887
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5855
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5827
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5790
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 225
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5708
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5699
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5636
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5555
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5486
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4617
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4662
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4285
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12195
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12027
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11649
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10930
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 3613
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10760
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10443
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10206
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9832
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9789
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9635
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9500
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9267
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8601
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8049
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7876
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7592
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7534
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7315
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7080
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6010
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6000
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5881
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5759
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5705
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5618
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5535
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5398
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 152
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4699
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4648
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4597
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4468
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4485
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7210
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6430
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6386
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6349
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6319
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6274
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6236
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6179
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6130
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6062
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5897
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5849
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5789
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5735
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 211
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5624
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5594
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5432
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5348
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4535
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4411
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4438
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 173
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4358
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12267
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12095
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4151
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11680
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11660
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11605
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11545
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11505
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11455
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11349
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11170
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11103
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10986
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10751
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10689
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10528
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10317
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10137
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9968
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9881
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9563
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9476
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9409
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7616
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7450
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7197
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6832
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5762
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5712
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5671
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5604
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5530
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4301
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12212
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 12046
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11769
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11695
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11661
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11603
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11544
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11500
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 11434
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4105
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10889
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10860
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10622
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10541
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 10194
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9714
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9687
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9633
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9580
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9280
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 9201
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8917
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1225
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8819
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1213
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8686
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8603
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8538
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8460
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1176
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8246
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 8001
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7827
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7325
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7294
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6702
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5423
---------------------------------------
<class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 1092
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7270
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 7259
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 6202
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5323
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5286
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5234
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 5182
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4766
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4645
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4549
---------------------------------------
Directory already exists: /mnt/beegfs/scratch/kmalanch/photod/priors/TRILEGAL/5
sample <class 'nested_pandas.nestedframe.core.NestedFrame'>
Healpix:  Order: 5, Pixel: 4432
---------------------------------------
2024-12-14 01:55:09,693 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,698 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,700 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,702 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,703 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,703 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,704 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,705 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,705 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,706 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,707 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,707 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,708 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,708 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,708 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,709 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,710 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,711 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,799 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,850 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,852 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,852 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,853 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,854 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,859 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,862 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,863 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,863 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,864 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,864 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,865 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,869 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,872 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,873 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,873 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,873 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,874 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,874 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,875 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,880 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,887 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,893 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,894 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:09,894 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,086 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,118 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,174 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,177 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,182 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,186 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,188 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,190 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,191 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,192 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,193 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,194 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,196 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,197 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,204 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,215 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,216 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,216 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,217 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,217 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,218 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,219 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,219 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,220 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,220 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,221 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,222 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,222 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,223 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,223 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,224 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,224 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,225 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,226 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,233 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,234 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,234 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,256 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,257 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,258 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,262 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,263 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,263 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,264 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,264 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,265 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,265 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,266 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,266 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,267 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,267 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,268 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,268 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,269 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,269 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,278 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,279 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,280 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,280 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,281 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,281 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,282 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,283 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,283 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,284 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,284 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,285 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,285 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,286 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,286 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,289 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,299 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,299 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,300 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,301 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,301 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,302 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,302 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,303 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,303 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,304 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,304 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,555 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,561 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,561 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,562 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,563 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,564 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,598 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,598 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,599 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,599 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,600 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,600 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,601 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,602 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,602 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,602 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,603 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,603 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,604 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,604 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,604 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,605 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,605 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,606 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,606 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,607 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,607 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,613 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,613 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,615 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,615 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,616 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,616 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,617 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,618 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,618 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,619 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,619 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,620 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,621 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,621 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,622 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,622 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,623 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,624 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,625 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,626 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,627 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,627 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,628 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,628 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,629 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,629 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,630 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,630 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,631 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,631 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,632 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,632 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,634 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,634 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,635 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:10,635 - distributed.nanny - WARNING - Worker process still alive after 4.0 seconds, killing
2024-12-14 01:55:11,278 - distributed.client - ERROR -
Traceback (most recent call last):
  File "/usr/lib/python3.10/asyncio/tasks.py", line 418, in wait_for
    return fut.result()
asyncio.exceptions.CancelledError

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/kmalanch/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/utils.py", line 805, in wrapper
    return await func(*args, **kwargs)
  File "/home/kmalanch/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/client.py", line 1945, in _close
    await self.cluster.close()
  File "/home/kmalanch/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/deploy/spec.py", line 448, in _close
    await self._correct_state()
  File "/home/kmalanch/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/deploy/spec.py", line 359, in _correct_state_internal
    await asyncio.gather(*tasks)
  File "/home/kmalanch/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/nanny.py", line 619, in close
    await self.kill(timeout=timeout, reason=reason)
  File "/home/kmalanch/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/nanny.py", line 400, in kill
    await self.process.kill(reason=reason, timeout=timeout)
  File "/home/kmalanch/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/nanny.py", line 883, in kill
    await process.join(max(0, deadline - time()))
  File "/home/kmalanch/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/process.py", line 330, in join
    await wait_for(asyncio.shield(self._exit_future), timeout)
  File "/home/kmalanch/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/utils.py", line 1915, in wait_for
    return await asyncio.wait_for(fut, timeout)
  File "/usr/lib/python3.10/asyncio/tasks.py", line 420, in wait_for
    raise exceptions.TimeoutError() from exc
asyncio.exceptions.TimeoutError
2024-12-14 01:55:11,279 - tornado.application - ERROR - Exception in callback functools.partial(<bound method IOLoop._discard_future_result of <tornado.platform.asyncio.AsyncIOMainLoop object at 0x7f5fa16b36d0>>, <Task finished name='Task-62221111' coro=<SpecCluster._correct_state_internal() done, defined at /home/kmalanch/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/deploy/spec.py:346> exception=TimeoutError()>)
Traceback (most recent call last):
  File "/usr/lib/python3.10/asyncio/tasks.py", line 418, in wait_for
    return fut.result()
asyncio.exceptions.CancelledError

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/kmalanch/.virtualenvs/photoD/lib/python3.10/site-packages/tornado/ioloop.py", line 750, in _run_callback
    ret = callback()
  File "/home/kmalanch/.virtualenvs/photoD/lib/python3.10/site-packages/tornado/ioloop.py", line 774, in _discard_future_result
    future.result()
asyncio.exceptions.TimeoutError
---------------------------------------------------------------------------
CancelledError                            Traceback (most recent call last)
File /usr/lib/python3.10/asyncio/tasks.py:418, in wait_for(fut, timeout)
    417 try:
--> 418     return fut.result()
    419 except exceptions.CancelledError as exc:

CancelledError:

The above exception was the direct cause of the following exception:

TimeoutError                              Traceback (most recent call last)
Cell In[6], line 1
----> 1 client.close()

File ~/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/client.py:1998, in Client.close(self, timeout)
   1995         coro = wait_for(coro, timeout)
   1996     return coro
-> 1998 sync(self.loop, self._close, fast=True, callback_timeout=timeout)
   1999 assert self.status == "closed"
   2001 if not self._is_finalizing():

File ~/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/utils.py:439, in sync(loop, func, callback_timeout, *args, **kwargs)
    436         wait(10)
    438 if error is not None:
--> 439     raise error
    440 else:
    441     return result

File ~/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/utils.py:413, in sync.<locals>.f()
    411         awaitable = wait_for(awaitable, timeout)
    412     future = asyncio.ensure_future(awaitable)
--> 413     result = yield future
    414 except Exception as exception:
    415     error = exception

File ~/.virtualenvs/photoD/lib/python3.10/site-packages/tornado/gen.py:766, in Runner.run(self)
    764 try:
    765     try:
--> 766         value = future.result()
    767     except Exception as e:
    768         # Save the exception for later. It's important that
    769         # gen.throw() not be called inside this try/except block
    770         # because that makes sys.exc_info behave unexpectedly.
    771         exc: Optional[Exception] = e

File ~/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/utils.py:1915, in wait_for(fut, timeout)
   1914 async def wait_for(fut: Awaitable[T], timeout: float) -> T:
-> 1915     return await asyncio.wait_for(fut, timeout)

File /usr/lib/python3.10/asyncio/tasks.py:445, in wait_for(fut, timeout)
    442         raise
    444 if fut.done():
--> 445     return fut.result()
    446 else:
    447     fut.remove_done_callback(cb)

File ~/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/utils.py:805, in _LogErrors.__call__.<locals>.wrapper(*args, **kwargs)
    803 async def wrapper(*args, **kwargs):
    804     with self:
--> 805         return await func(*args, **kwargs)

File ~/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/client.py:1945, in Client._close(self, fast)
   1943 if self._start_arg is None:
   1944     with suppress(AttributeError):
-> 1945         await self.cluster.close()
   1947 await self.rpc.close()
   1949 self.status = "closed"

File ~/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/deploy/spec.py:448, in SpecCluster._close(self)
    446 if isawaitable(f):
    447     await f
--> 448 await self._correct_state()
    449 await asyncio.gather(*self._futures)
    451 if self.scheduler_comm:

File ~/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/deploy/spec.py:359, in SpecCluster._correct_state_internal(self)
    353         await self.scheduler_comm.retire_workers(workers=list(to_close))
    354     tasks = [
    355         asyncio.create_task(self.workers[w].close())
    356         for w in to_close
    357         if w in self.workers
    358     ]
--> 359     await asyncio.gather(*tasks)
    360 for name in to_close:
    361     if name in self.workers:

File ~/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/nanny.py:619, in Nanny.close(self, timeout, reason)
    617 self.stop()
    618 if self.process is not None:
--> 619     await self.kill(timeout=timeout, reason=reason)
    621 self.process = None
    622 await self.rpc.close()

File ~/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/nanny.py:400, in Nanny.kill(self, timeout, reason)
    394 """Kill the local worker process
    395
    396 Blocks until both the process is down and the scheduler is properly
    397 informed
    398 """
    399 if self.process is not None:
--> 400     await self.process.kill(reason=reason, timeout=timeout)

File ~/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/nanny.py:883, in WorkerProcess.kill(self, timeout, executor_wait, reason)
    879     logger.warning(
    880         f"Worker process still alive after {wait_timeout:.1f} seconds, killing"
    881     )
    882     await process.kill()
--> 883     await process.join(max(0, deadline - time()))
    884 except ValueError as e:
    885     if "invalid operation on closed AsyncProcess" in str(e):

File ~/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/process.py:330, in AsyncProcess.join(self, timeout)
    327     return
    328 # Shield otherwise the timeout cancels the future and our
    329 # on_exit callback will try to set a result on a canceled future
--> 330 await wait_for(asyncio.shield(self._exit_future), timeout)

File ~/.virtualenvs/photoD/lib/python3.10/site-packages/distributed/utils.py:1915, in wait_for(fut, timeout)
   1914 async def wait_for(fut: Awaitable[T], timeout: float) -> T:
-> 1915     return await asyncio.wait_for(fut, timeout)

File /usr/lib/python3.10/asyncio/tasks.py:420, in wait_for(fut, timeout)
    418         return fut.result()
    419     except exceptions.CancelledError as exc:
--> 420         raise exceptions.TimeoutError() from exc
    422 waiter = loop.create_future()
    423 timeout_handle = loop.call_later(timeout, _release_waiter, waiter)

TimeoutError:
[ ]: