pytroll / satpy

Python package for earth-observing satellite data processing
http://satpy.readthedocs.org/en/latest/
GNU General Public License v3.0
1.05k stars 289 forks source link

Color issue when using daynight compositor with a color palette. #1696

Open KziolkowskiWx opened 3 years ago

KziolkowskiWx commented 3 years ago

I am attempting to make a day/night composite of a Visible/IR sandwich and a night microphysics with an IR color palette overlaid to show cloud top temperatures. In the visible/IR image the surface shows up as a shade of blue where the surface should show up as greyscale.

Here are the composites that are used in abi.yaml.

  vis_ir_sandwich_nightmp:
    compositor: !!python/name:satpy.composites.DayNightCompositor
    standard_name: vis_ir_sandwich_nighmp
    lim_low: 86.
    lim_high: 88.
    prerequisites:
      - visir_sandwich_raw
      - night_microphysics_ir

  visir_sandwich_raw:
    compositor: !!python/name:satpy.composites.SandwichCompositor
    standard_name: visir_sandwich_raw
    prerequisites:
      - name: vis_raw
      - name: ir_custom_colortable

  night_microphysics_ir:
    compositor: !!python/name:satpy.composites.BackgroundCompositor
    standard_name: night_microphysics_ir
    prerequisites:
        - name: ir_clouds_1
        - name: night_microphysics

  night_microphysics:
    compositor: !!python/name:satpy.composites.GenericCompositor
    prerequisites:
    - compositor: !!python/name:satpy.composites.DifferenceCompositor
      prerequisites:
      - name: C15
      - name: C13
    - compositor: !!python/name:satpy.composites.DifferenceCompositor
      prerequisites:
        - name: C13
        - name: C07
    - name: C13
    standard_name: night_microphysics   

  ir_clouds_1:
    compositor: !!python/name:satpy.composites.GenericCompositor
    description: >
      This colortable has an alpha value built in so it can be overlaid ontop of another product.
    prerequisites:
      - wavelength: 10.3
    standard_name: ir_clouds_1

  ir_custom_colortable:
    compositor: !!python/name:satpy.composites.GenericCompositor
    description: >
      This colortable is for sandwich (colortable + greys).
    prerequisites:
      - name: C13
    standard_name: ir_custom_colortable

Here are the enhancements in my generic.yaml.

  ir_custom_colortable:
    standard_name: ir_custom_colortable
    operations:
      - name: colorize
        method: *colorizefun 
        kwargs:
          palettes:
            - {filename: /Users/kyleziolkowski/satdev/ConfigDir/colortables/custom_colortable_raw.npy, min_value: 193.15, max_value: 253.149999}
            - {colors: greys, min_value: 253.15, max_value: 360.15}

  ir_clouds_1:
    standard_name: ir_clouds_1
    operations:
      - name: colorize
        method: *colorizefun 
        kwargs:
          palettes:
            #Note: alpha values are between 0 and 255!
            - {colormap_mode: 'RGBA', filename: /Users/kyleziolkowski/satdev/ConfigDir/colortables/custom_colortable1.npy, min_value: 193.15, max_value: 253.149999}

  night_microphysics:
    standard_name: night_microphysics
    operations:
    - name: stretch
      method: *stretchfun
      kwargs:
        stretch: crude
        min_stretch: [-6.7, -3.1, 243]
        max_stretch: [2.6, 5.2, 293]

  visir_sandwich_raw:
    standard_name: visir_sandwich_raw
    operations:
      - name: stretch
        method: *stretchfun
        kwargs:
          stretch: crude
          min_stretch: [0, 0, 0]
          max_stretch: [1, 1, 1]
      - name: gamma
        method: *gammafun
        kwargs: {gamma: 2.0}

  vis_raw:
    standard_name: vis_raw
    operations:
      - name: stretch
        method: *stretchfun
        kwargs:
          stretch: crude
          min_stretch: [0]
          max_stretch: [100]
      - name: gamma
        method: *gammafun
        kwargs: {gamma: 2.0}

The results should be a greyscale surface in the visible/IR sandwich like so:

meso_east2_visir_sandwich_latest

This image is just from using visir_sandwich_raw, but when I try to combine it with the night_microphysics_ir using the daynight compositor, the results are:

meso_east2_vis_ir_sandwich_nightmp_latest

As you can see the surface appears blueish rather than greyscale as we see when I am creating just the visir_sandwich.

Here is the debug() output from my script. (Note: this is from a different time than the images above, but everything is the same. Didn't save the output from the images above.):

['http://noaa-goes16.s3.amazonaws.com/ABI-L1b-RadM/2021/147/17/OR_ABI-L1b-RadM2-M6C02_G16_s20211471747528_e20211471747585_c20211471748010.nc#mode=bytes', 'http://noaa-goes16.s3.amazonaws.com/ABI-L1b-RadM/2021/147/17/OR_ABI-L1b-RadM2-M6C07_G16_s20211471747528_e20211471747596_c20211471748033.nc#mode=bytes', 'http://noaa-goes16.s3.amazonaws.com/ABI-L1b-RadM/2021/147/17/OR_ABI-L1b-RadM2-M6C13_G16_s20211471747528_e20211471747596_c20211471748046.nc#mode=bytes', 'http://noaa-goes16.s3.amazonaws.com/ABI-L1b-RadM/2021/147/17/OR_ABI-L1b-RadM2-M6C15_G16_s20211471747528_e20211471747591_c20211471748039.nc#mode=bytes']
[DEBUG: 2021-05-27 12:48:42 : satpy.scene] Setting 'PPP_CONFIG_DIR' to '/Users/kyleziolkowski/satdev/ConfigDir/'
[DEBUG: 2021-05-27 12:48:42 : satpy.readers] Reading ['/Users/kyleziolkowski/anaconda2/envs/satdev/lib/python3.7/site-packages/satpy/etc/readers/abi_l1b.yaml']
[DEBUG: 2021-05-27 12:48:42 : satpy.readers.yaml_reader] Assigning to abi_l1b: ['http://noaa-goes16.s3.amazonaws.com/ABI-L1b-RadM/2021/147/17/OR_ABI-L1b-RadM2-M6C02_G16_s20211471747528_e20211471747585_c20211471748010.nc#mode=bytes', 'http://noaa-goes16.s3.amazonaws.com/ABI-L1b-RadM/2021/147/17/OR_ABI-L1b-RadM2-M6C07_G16_s20211471747528_e20211471747596_c20211471748033.nc#mode=bytes', 'http://noaa-goes16.s3.amazonaws.com/ABI-L1b-RadM/2021/147/17/OR_ABI-L1b-RadM2-M6C13_G16_s20211471747528_e20211471747596_c20211471748046.nc#mode=bytes', 'http://noaa-goes16.s3.amazonaws.com/ABI-L1b-RadM/2021/147/17/OR_ABI-L1b-RadM2-M6C15_G16_s20211471747528_e20211471747591_c20211471748039.nc#mode=bytes']
[DEBUG: 2021-05-27 12:49:22 : satpy.composites] Looking for composites config file abi.yaml
[DEBUG: 2021-05-27 12:49:22 : satpy.composites] Looking for composites config file visir.yaml
[DEBUG: 2021-05-27 12:49:23 : satpy.node] Skipping optional solar_zenith_angle: Unknown dataset solar_zenith_angle
/Users/kyleziolkowski/anaconda2/envs/satdev/lib/python3.7/site-packages/pyproj/crs/crs.py:543: UserWarning: You will likely lose important projection information when converting to a PROJ string from another format. See: https://proj.org/faq.html#what-is-the-best-format-for-describing-coordinate-reference-systems
  proj_string = self.to_proj4()
[DEBUG: 2021-05-27 12:49:23 : satpy.readers.abi_l1b] Reading in get_dataset C15.
[DEBUG: 2021-05-27 12:49:23 : satpy.readers.abi_l1b] Calibrating to brightness temperatures
/Users/kyleziolkowski/anaconda2/envs/satdev/lib/python3.7/site-packages/pyproj/crs/crs.py:543: UserWarning: You will likely lose important projection information when converting to a PROJ string from another format. See: https://proj.org/faq.html#what-is-the-best-format-for-describing-coordinate-reference-systems
  proj_string = self.to_proj4()
[DEBUG: 2021-05-27 12:49:23 : satpy.readers.abi_l1b] Reading in get_dataset C07.
[DEBUG: 2021-05-27 12:49:24 : satpy.readers.abi_l1b] Calibrating to brightness temperatures
/Users/kyleziolkowski/anaconda2/envs/satdev/lib/python3.7/site-packages/pyproj/crs/crs.py:543: UserWarning: You will likely lose important projection information when converting to a PROJ string from another format. See: https://proj.org/faq.html#what-is-the-best-format-for-describing-coordinate-reference-systems
  proj_string = self.to_proj4()
[DEBUG: 2021-05-27 12:49:24 : satpy.readers.abi_l1b] Reading in get_dataset C02.
[DEBUG: 2021-05-27 12:49:24 : satpy.readers.abi_l1b] Calibrating to reflectances
/Users/kyleziolkowski/anaconda2/envs/satdev/lib/python3.7/site-packages/pyproj/crs/crs.py:543: UserWarning: You will likely lose important projection information when converting to a PROJ string from another format. See: https://proj.org/faq.html#what-is-the-best-format-for-describing-coordinate-reference-systems
  proj_string = self.to_proj4()
[DEBUG: 2021-05-27 12:49:25 : satpy.readers.abi_l1b] Reading in get_dataset C13.
[DEBUG: 2021-05-27 12:49:25 : satpy.readers.abi_l1b] Calibrating to brightness temperatures
[DEBUG: 2021-05-27 12:49:25 : satpy.composites] Applying sun zen correction
[DEBUG: 2021-05-27 12:49:25 : satpy.composites] Computing sun zenith angles.
[DEBUG: 2021-05-27 12:49:26 : satpy.composites] Apply the standard sun-zenith correction [1/cos(sunz)]
[DEBUG: 2021-05-27 12:49:26 : satpy.composites] Sun-zenith correction applied. Computation time:   0.3 (sec)
[DEBUG: 2021-05-27 12:49:26 : satpy.scene] Delaying generation of DatasetID(name='visir_sandwich_raw', wavelength=None, resolution=None, polarization=None, calibration=None, level=None, modifiers=None) because of incompatible areas
[DEBUG: 2021-05-27 12:49:26 : satpy.writers] Enhancement configuration options: [{'name': 'colorize', 'method': <function colorize at 0x7ffd5b9f7e60>, 'kwargs': {'palettes': [{'colormap_mode': 'RGBA', 'filename': '/Users/kyleziolkowski/satdev/ConfigDir/colortables/custom_colortable1.npy', 'min_value': 193.15, 'max_value': 253.149999}]}}]
[DEBUG: 2021-05-27 12:49:27 : satpy.writers] Enhancement configuration options: [{'name': 'stretch', 'method': <function stretch at 0x7ffd5b3c4b00>, 'kwargs': {'stretch': 'crude', 'min_stretch': [-6.7, -3.1, 243], 'max_stretch': [2.6, 5.2, 293]}}]
[DEBUG: 2021-05-27 12:49:27 : trollimage.xrimage] Applying stretch crude with parameters {'min_stretch': [-6.7, -3.1, 243], 'max_stretch': [2.6, 5.2, 293]}
[DEBUG: 2021-05-27 12:49:27 : satpy.scene] Delaying generation of DatasetID(name='vis_ir_sandwich_nightmp', wavelength=None, resolution=None, polarization=None, calibration=None, level=None, modifiers=None) because of dependency's delayed generation: DatasetID(name='night_microphysics_ir', wavelength=None, resolution=None, polarization=None, calibration=None, level=None, modifiers=None)
[DEBUG: 2021-05-27 12:49:27 : satpy.scene] Delayed prerequisite for 'DatasetID(name='vis_ir_sandwich_nightmp', wavelength=None, resolution=None, polarization=None, calibration=None, level=None, modifiers=None)': 'DatasetID(name='night_microphysics_ir', wavelength=None, resolution=None, polarization=None, calibration=None, level=None, modifiers=None)'
[WARNING: 2021-05-27 12:49:27 : satpy.scene] The following datasets were not created and may require resampling to be generated: DatasetID(name='vis_ir_sandwich_nightmp', wavelength=None, resolution=None, polarization=None, calibration=None, level=None, modifiers=None)
[DEBUG: 2021-05-27 12:49:27 : satpy.scene] Unloading dataset: DatasetID(name='C15', wavelength=(11.8, 12.3, 12.8), resolution=2000, polarization=None, calibration='brightness_temperature', level=None, modifiers=())
[DEBUG: 2021-05-27 12:49:27 : satpy.scene] Unloading dataset: DatasetID(name='C07', wavelength=(3.8, 3.9, 4.0), resolution=2000, polarization=None, calibration='brightness_temperature', level=None, modifiers=())
[DEBUG: 2021-05-27 12:49:27 : satpy.scene] Unloading dataset: DatasetID(name='C02', wavelength=(0.59, 0.64, 0.69), resolution=500, polarization=None, calibration='reflectance', level=None, modifiers=())
[DEBUG: 2021-05-27 12:49:27 : satpy.scene] Unloading dataset: DatasetID(name='C13', wavelength=(10.1, 10.35, 10.6), resolution=2000, polarization=None, calibration='brightness_temperature', level=None, modifiers=())
[DEBUG: 2021-05-27 12:49:27 : satpy.scene] Unloading dataset: DatasetID(name='C02', wavelength=(0.59, 0.64, 0.69), resolution=500, polarization=None, calibration='reflectance', level=None, modifiers=('sunz_corrected',))
[DEBUG: 2021-05-27 12:49:27 : satpy.scene] Unloading dataset: DatasetID(name='_night_microphysics_dep_1', wavelength=None, resolution=2000, polarization=None, calibration='brightness_temperature', level=None, modifiers=())
[DEBUG: 2021-05-27 12:49:27 : satpy.scene] Unloading dataset: DatasetID(name='ir_clouds_1', wavelength=None, resolution=2000, polarization=None, calibration=None, level=None, modifiers=None)
[DEBUG: 2021-05-27 12:49:27 : satpy.scene] Unloading dataset: DatasetID(name='_night_microphysics_dep_0', wavelength=None, resolution=2000, polarization=None, calibration='brightness_temperature', level=None, modifiers=())
[DEBUG: 2021-05-27 12:49:27 : satpy.scene] Unloading dataset: DatasetID(name='night_microphysics', wavelength=None, resolution=2000, polarization=None, calibration=None, level=None, modifiers=None)
[DEBUG: 2021-05-27 12:49:27 : satpy.scene] Setting 'PPP_CONFIG_DIR' to '/Users/kyleziolkowski/satdev/ConfigDir/'
[DEBUG: 2021-05-27 12:49:27 : satpy.scene] Resampling DatasetID(name='vis_raw', wavelength=None, resolution=500, polarization=None, calibration=None, level=None, modifiers=None)
[DEBUG: 2021-05-27 12:49:27 : pyresample.geometry] Projections for data and slice areas are identical: +proj=geos +lon_0=-75.0 +a=6378137.0 +b=6356752.31414 +h=35786023.0 +units=m +sweep=x +type=crs
/Users/kyleziolkowski/anaconda2/envs/satdev/lib/python3.7/site-packages/pyproj/crs/crs.py:543: UserWarning: You will likely lose important projection information when converting to a PROJ string from another format. See: https://proj.org/faq.html#what-is-the-best-format-for-describing-coordinate-reference-systems
  proj_string = self.to_proj4()
[INFO: 2021-05-27 12:49:27 : satpy.resample] Using default KDTree resampler
[DEBUG: 2021-05-27 12:49:27 : satpy.resample] Check if ./resample_lut-aee71034403b01a040390d4e7d83ec444bfc48ae.npz exists
[DEBUG: 2021-05-27 12:49:27 : satpy.resample] Computing kd-tree parameters
[DEBUG: 2021-05-27 12:49:28 : satpy.resample] Resampling mul-43c9077a738878fa650c79f70f6382bf
[DEBUG: 2021-05-27 12:49:28 : satpy.scene] Resampling DatasetID(name='ir_custom_colortable', wavelength=None, resolution=2000, polarization=None, calibration=None, level=None, modifiers=None)
[DEBUG: 2021-05-27 12:49:28 : pyresample.geometry] Projections for data and slice areas are identical: +proj=geos +lon_0=-75.0 +a=6378137.0 +b=6356752.31414 +h=35786023.0 +units=m +sweep=x +type=crs
/Users/kyleziolkowski/anaconda2/envs/satdev/lib/python3.7/site-packages/pyproj/crs/crs.py:543: UserWarning: You will likely lose important projection information when converting to a PROJ string from another format. See: https://proj.org/faq.html#what-is-the-best-format-for-describing-coordinate-reference-systems
  proj_string = self.to_proj4()
[INFO: 2021-05-27 12:49:28 : satpy.resample] Using default KDTree resampler
[DEBUG: 2021-05-27 12:49:28 : satpy.resample] Check if ./resample_lut-3b417b4b2ceea236461df11a9f141a72088a4097.npz exists
[DEBUG: 2021-05-27 12:49:28 : satpy.resample] Computing kd-tree parameters
[DEBUG: 2021-05-27 12:49:28 : satpy.resample] Resampling truediv-62427e4c161639e260246d37f6527a50
[DEBUG: 2021-05-27 12:49:28 : satpy.scene] Resampling DatasetID(name='night_microphysics_ir', wavelength=None, resolution=2000, polarization=None, calibration=None, level=None, modifiers=None)
[DEBUG: 2021-05-27 12:49:28 : satpy.resample] Check if ./resample_lut-3b417b4b2ceea236461df11a9f141a72088a4097.npz exists
[DEBUG: 2021-05-27 12:49:28 : satpy.resample] Computing kd-tree parameters
[DEBUG: 2021-05-27 12:49:29 : satpy.resample] Resampling where-70d99bcc2d4bea4fe4e7c4848a4a9272
[DEBUG: 2021-05-27 12:49:29 : satpy.scene] Missing prerequisite for 'DatasetID(name='C02', wavelength=(0.59, 0.64, 0.69), resolution=500, polarization=None, calibration='reflectance', level=None, modifiers=('sunz_corrected',))': 'DatasetID(name='C02', wavelength=(0.59, 0.64, 0.69), resolution=500, polarization=None, calibration='reflectance', level=None, modifiers=())'
[DEBUG: 2021-05-27 12:49:29 : satpy.writers] Enhancement configuration options: [{'name': 'colorize', 'method': <function colorize at 0x7ffd5b9f7e60>, 'kwargs': {'palettes': [{'filename': '/Users/kyleziolkowski/satdev/ConfigDir/colortables/custom_colortable_raw.npy', 'min_value': 193.15, 'max_value': 253.149999}, {'colors': 'greys', 'min_value': 253.15, 'max_value': 360.15}]}}]
[DEBUG: 2021-05-27 12:49:29 : satpy.composites] Computing sun zenith angles.
[DEBUG: 2021-05-27 12:49:30 : satpy.writers] Enhancement configuration options: [{'name': 'stretch', 'method': <function stretch at 0x7ffd5b3c4b00>, 'kwargs': {'stretch': 'crude', 'min_stretch': [0, 0, 0], 'max_stretch': [1, 1, 1]}}, {'name': 'gamma', 'method': <function gamma at 0x7ffd5b9f7a70>, 'kwargs': {'gamma': 2.0}}]
[DEBUG: 2021-05-27 12:49:30 : trollimage.xrimage] Applying stretch crude with parameters {'min_stretch': [0, 0, 0], 'max_stretch': [1, 1, 1]}
[DEBUG: 2021-05-27 12:49:30 : trollimage.xrimage] Applying gamma 2.0
[DEBUG: 2021-05-27 12:49:30 : satpy.writers] Enhancement configuration options: [{'name': 'stretch', 'method': <function stretch at 0x7ffd5b3c4b00>, 'kwargs': {'stretch': 'linear'}}]
[DEBUG: 2021-05-27 12:49:30 : trollimage.xrimage] Applying stretch linear with parameters {}
[DEBUG: 2021-05-27 12:49:30 : trollimage.xrimage] Perform a linear contrast stretch.
[DEBUG: 2021-05-27 12:49:30 : trollimage.xrimage] Calculate the histogram quantiles: 
[DEBUG: 2021-05-27 12:49:30 : trollimage.xrimage] Left and right quantiles: 0.005 0.005
[DEBUG: 2021-05-27 12:49:30 : satpy.scene] Missing prerequisite for 'DatasetID(name='_night_microphysics_dep_1', wavelength=None, resolution=2000, polarization=None, calibration='brightness_temperature', level=None, modifiers=())': 'DatasetID(name='C13', wavelength=(10.1, 10.35, 10.6), resolution=2000, polarization=None, calibration='brightness_temperature', level=None, modifiers=())'
[DEBUG: 2021-05-27 12:49:30 : satpy.scene] Missing prerequisite for 'DatasetID(name='_night_microphysics_dep_0', wavelength=None, resolution=2000, polarization=None, calibration='brightness_temperature', level=None, modifiers=())': 'DatasetID(name='C15', wavelength=(11.8, 12.3, 12.8), resolution=2000, polarization=None, calibration='brightness_temperature', level=None, modifiers=())'
[DEBUG: 2021-05-27 12:49:30 : satpy.scene] Missing prerequisite for 'DatasetID(name='night_microphysics', wavelength=None, resolution=2000, polarization=None, calibration=None, level=None, modifiers=None)': 'DatasetID(name='_night_microphysics_dep_0', wavelength=None, resolution=2000, polarization=None, calibration='brightness_temperature', level=None, modifiers=())'
[DEBUG: 2021-05-27 12:49:30 : satpy.scene] Missing prerequisite for 'DatasetID(name='ir_clouds_1', wavelength=None, resolution=2000, polarization=None, calibration=None, level=None, modifiers=None)': 'DatasetID(name='C13', wavelength=(10.1, 10.35, 10.6), resolution=2000, polarization=None, calibration='brightness_temperature', level=None, modifiers=())'
[DEBUG: 2021-05-27 12:49:30 : satpy.scene] Missing prerequisite for 'DatasetID(name='_night_microphysics_dep_0', wavelength=None, resolution=2000, polarization=None, calibration='brightness_temperature', level=None, modifiers=())': 'DatasetID(name='C15', wavelength=(11.8, 12.3, 12.8), resolution=2000, polarization=None, calibration='brightness_temperature', level=None, modifiers=())'
[DEBUG: 2021-05-27 12:49:30 : satpy.scene] Unloading dataset: DatasetID(name='vis_raw', wavelength=None, resolution=500, polarization=None, calibration=None, level=None, modifiers=None)
[DEBUG: 2021-05-27 12:49:30 : satpy.scene] Unloading dataset: DatasetID(name='ir_custom_colortable', wavelength=None, resolution=2000, polarization=None, calibration=None, level=None, modifiers=None)
[DEBUG: 2021-05-27 12:49:30 : satpy.scene] Unloading dataset: DatasetID(name='night_microphysics_ir', wavelength=None, resolution=2000, polarization=None, calibration=None, level=None, modifiers=None)
[DEBUG: 2021-05-27 12:49:30 : satpy.scene] Unloading dataset: DatasetID(name='visir_sandwich_raw', wavelength=None, resolution=2000, polarization=None, calibration=None, level=None, modifiers=None)
Scene loaded
past the sampling
[DEBUG: 2021-05-27 12:49:31 : satpy.writers] Enhancement configuration options: [{'name': 'stretch', 'method': <function stretch at 0x7ffd5b3c4b00>, 'kwargs': {'stretch': 'linear'}}]
[DEBUG: 2021-05-27 12:49:31 : trollimage.xrimage] Applying stretch linear with parameters {}
[DEBUG: 2021-05-27 12:49:31 : trollimage.xrimage] Perform a linear contrast stretch.
[DEBUG: 2021-05-27 12:49:31 : trollimage.xrimage] Calculate the histogram quantiles: 
[DEBUG: 2021-05-27 12:49:31 : trollimage.xrimage] Left and right quantiles: 0.005 0.005
/Users/kyleziolkowski/anaconda2/envs/satdev/lib/python3.7/site-packages/dask/core.py:121: RuntimeWarning: invalid value encountered in log
  return func(*(_execute_task(a, cache) for a in args))
/Users/kyleziolkowski/anaconda2/envs/satdev/lib/python3.7/site-packages/trollimage/colorspaces.py:128: RuntimeWarning: invalid value encountered in power
  1.055 * (arr ** (1.0 / 2.4)) - 0.055,
/Users/kyleziolkowski/anaconda2/envs/satdev/lib/python3.7/site-packages/dask/core.py:121: RuntimeWarning: invalid value encountered in log
  return func(*(_execute_task(a, cache) for a in args))
/Users/kyleziolkowski/anaconda2/envs/satdev/lib/python3.7/site-packages/dask/core.py:121: RuntimeWarning: invalid value encountered in log
  return func(*(_execute_task(a, cache) for a in args))
/Users/kyleziolkowski/anaconda2/envs/satdev/lib/python3.7/site-packages/trollimage/colorspaces.py:128: RuntimeWarning: invalid value encountered in power
  1.055 * (arr ** (1.0 / 2.4)) - 0.055,
/Users/kyleziolkowski/anaconda2/envs/satdev/lib/python3.7/site-packages/dask/core.py:121: RuntimeWarning: invalid value encountered in log
  return func(*(_execute_task(a, cache) for a in args))
[DEBUG: 2021-05-27 12:49:35 : trollimage.xrimage] Interval: left=<xarray.DataArray (bands: 3)>
array([0., 0., 0.])
Coordinates:
    quantile  float64 0.005
Dimensions without coordinates: bands, right=<xarray.DataArray (bands: 3)>
array([1.        , 0.88130888, 1.        ])
Coordinates:
    quantile  float64 0.995
Dimensions without coordinates: bands
[DEBUG: 2021-05-27 12:49:40 : trollimage.xrimage] Interval: left=<xarray.DataArray (bands: 3)>
array([0.15302827, 0.09975505, 0.        ])
Coordinates:
    quantile  float64 0.005
Dimensions without coordinates: bands, right=<xarray.DataArray (bands: 3)>
array([0.9169353 , 0.81479604, 0.80003394])
Coordinates:
    quantile  float64 0.995
Dimensions without coordinates: bands
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Entering env context: <fiona.env.Env object at 0x7ffd5ba9ad10>
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Starting outermost env
[DEBUG: 2021-05-27 12:49:41 : fiona.env] No GDAL environment exists
[DEBUG: 2021-05-27 12:49:41 : fiona.env] New GDAL environment <fiona._env.GDALEnv object at 0x7ffd5b927290> created
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Logging error handler pushed.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] All drivers registered.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] GDAL_DATA found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/gdal'.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] PROJ_LIB found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/proj'.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Started GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b927290>.
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Updated existing <fiona._env.GDALEnv object at 0x7ffd5b927290> with options {}
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Entered env context: <fiona.env.Env object at 0x7ffd5ba9ad10>
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Got a copy of environment <fiona._env.GDALEnv object at 0x7ffd5b927290> options
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Credentialized: {'CHECK_WITH_INVERT_PROJ': True, 'GTIFF_IMPLICIT_JPEG_OVR': False, 'FIONA_ENV': True, 'GDAL_DATA': '/Users/kyleziolkowski/anaconda2/envs/satdev/share/gdal'}
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Exiting env context: <fiona.env.Env object at 0x7ffd5ba9ad10>
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Cleared existing <fiona._env.GDALEnv object at 0x7ffd5b927290> options
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Stopping GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b927290>.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Error handler popped.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Stopped GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b927290>.
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Exiting outermost env
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Exited env context: <fiona.env.Env object at 0x7ffd5ba9ad10>
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Entering env context: <fiona.env.Env object at 0x7ffd5b927290>
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Starting outermost env
[DEBUG: 2021-05-27 12:49:41 : fiona.env] No GDAL environment exists
[DEBUG: 2021-05-27 12:49:41 : fiona.env] New GDAL environment <fiona._env.GDALEnv object at 0x7ffd5ba9ac90> created
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Logging error handler pushed.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] All drivers registered.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] GDAL_DATA found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/gdal'.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] PROJ_LIB found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/proj'.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Started GDALEnv <fiona._env.GDALEnv object at 0x7ffd5ba9ac90>.
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Updated existing <fiona._env.GDALEnv object at 0x7ffd5ba9ac90> with options {}
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Entered env context: <fiona.env.Env object at 0x7ffd5b927290>
[DEBUG: 2021-05-27 12:49:41 : fiona.ogrext] Index: 0
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Exiting env context: <fiona.env.Env object at 0x7ffd5b927290>
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Cleared existing <fiona._env.GDALEnv object at 0x7ffd5ba9ac90> options
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Stopping GDALEnv <fiona._env.GDALEnv object at 0x7ffd5ba9ac90>.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Error handler popped.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Stopped GDALEnv <fiona._env.GDALEnv object at 0x7ffd5ba9ac90>.
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Exiting outermost env
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Exited env context: <fiona.env.Env object at 0x7ffd5b927290>
[DEBUG: 2021-05-27 12:49:41 : fiona.collection] Flushed buffer
[DEBUG: 2021-05-27 12:49:41 : fiona.collection] Stopped session
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Entering env context: <fiona.env.Env object at 0x7ffd5b83e2d0>
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Starting outermost env
[DEBUG: 2021-05-27 12:49:41 : fiona.env] No GDAL environment exists
[DEBUG: 2021-05-27 12:49:41 : fiona.env] New GDAL environment <fiona._env.GDALEnv object at 0x7ffd5b83e290> created
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Logging error handler pushed.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] All drivers registered.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] GDAL_DATA found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/gdal'.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] PROJ_LIB found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/proj'.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Started GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b83e290>.
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Updated existing <fiona._env.GDALEnv object at 0x7ffd5b83e290> with options {}
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Entered env context: <fiona.env.Env object at 0x7ffd5b83e2d0>
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Got a copy of environment <fiona._env.GDALEnv object at 0x7ffd5b83e290> options
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Credentialized: {'CHECK_WITH_INVERT_PROJ': True, 'GTIFF_IMPLICIT_JPEG_OVR': False, 'FIONA_ENV': True, 'GDAL_DATA': '/Users/kyleziolkowski/anaconda2/envs/satdev/share/gdal'}
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Exiting env context: <fiona.env.Env object at 0x7ffd5b83e2d0>
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Cleared existing <fiona._env.GDALEnv object at 0x7ffd5b83e290> options
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Stopping GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b83e290>.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Error handler popped.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Stopped GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b83e290>.
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Exiting outermost env
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Exited env context: <fiona.env.Env object at 0x7ffd5b83e2d0>
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Entering env context: <fiona.env.Env object at 0x7ffd5b83e310>
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Starting outermost env
[DEBUG: 2021-05-27 12:49:41 : fiona.env] No GDAL environment exists
[DEBUG: 2021-05-27 12:49:41 : fiona.env] New GDAL environment <fiona._env.GDALEnv object at 0x7ffd5b83e290> created
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Logging error handler pushed.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] All drivers registered.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] GDAL_DATA found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/gdal'.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] PROJ_LIB found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/proj'.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Started GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b83e290>.
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Updated existing <fiona._env.GDALEnv object at 0x7ffd5b83e290> with options {}
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Entered env context: <fiona.env.Env object at 0x7ffd5b83e310>
[DEBUG: 2021-05-27 12:49:41 : fiona.ogrext] Index: 0
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Exiting env context: <fiona.env.Env object at 0x7ffd5b83e310>
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Cleared existing <fiona._env.GDALEnv object at 0x7ffd5b83e290> options
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Stopping GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b83e290>.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Error handler popped.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Stopped GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b83e290>.
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Exiting outermost env
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Exited env context: <fiona.env.Env object at 0x7ffd5b83e310>
[DEBUG: 2021-05-27 12:49:41 : fiona.collection] Flushed buffer
[DEBUG: 2021-05-27 12:49:41 : fiona.collection] Stopped session
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Entering env context: <fiona.env.Env object at 0x7ffd5b8121d0>
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Starting outermost env
[DEBUG: 2021-05-27 12:49:41 : fiona.env] No GDAL environment exists
[DEBUG: 2021-05-27 12:49:41 : fiona.env] New GDAL environment <fiona._env.GDALEnv object at 0x7ffd5b8004d0> created
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Logging error handler pushed.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] All drivers registered.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] GDAL_DATA found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/gdal'.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] PROJ_LIB found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/proj'.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Started GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b8004d0>.
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Updated existing <fiona._env.GDALEnv object at 0x7ffd5b8004d0> with options {}
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Entered env context: <fiona.env.Env object at 0x7ffd5b8121d0>
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Got a copy of environment <fiona._env.GDALEnv object at 0x7ffd5b8004d0> options
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Credentialized: {'CHECK_WITH_INVERT_PROJ': True, 'GTIFF_IMPLICIT_JPEG_OVR': False, 'FIONA_ENV': True, 'GDAL_DATA': '/Users/kyleziolkowski/anaconda2/envs/satdev/share/gdal'}
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Exiting env context: <fiona.env.Env object at 0x7ffd5b8121d0>
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Cleared existing <fiona._env.GDALEnv object at 0x7ffd5b8004d0> options
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Stopping GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b8004d0>.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Error handler popped.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Stopped GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b8004d0>.
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Exiting outermost env
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Exited env context: <fiona.env.Env object at 0x7ffd5b8121d0>
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Entering env context: <fiona.env.Env object at 0x7ffd5b800cd0>
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Starting outermost env
[DEBUG: 2021-05-27 12:49:41 : fiona.env] No GDAL environment exists
[DEBUG: 2021-05-27 12:49:41 : fiona.env] New GDAL environment <fiona._env.GDALEnv object at 0x7ffd5b8121d0> created
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Logging error handler pushed.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] All drivers registered.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] GDAL_DATA found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/gdal'.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] PROJ_LIB found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/proj'.
[DEBUG: 2021-05-27 12:49:41 : fiona._env] Started GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b8121d0>.
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Updated existing <fiona._env.GDALEnv object at 0x7ffd5b8121d0> with options {}
[DEBUG: 2021-05-27 12:49:41 : fiona.env] Entered env context: <fiona.env.Env object at 0x7ffd5b800cd0>
[DEBUG: 2021-05-27 12:49:41 : fiona.ogrext] Index: 0
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Exiting env context: <fiona.env.Env object at 0x7ffd5b800cd0>
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Cleared existing <fiona._env.GDALEnv object at 0x7ffd5b8121d0> options
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Stopping GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b8121d0>.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Error handler popped.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Stopped GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b8121d0>.
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Exiting outermost env
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Exited env context: <fiona.env.Env object at 0x7ffd5b800cd0>
[DEBUG: 2021-05-27 12:49:42 : fiona.collection] Flushed buffer
[DEBUG: 2021-05-27 12:49:42 : fiona.collection] Stopped session
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Entering env context: <fiona.env.Env object at 0x7ffd5751b390>
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Starting outermost env
[DEBUG: 2021-05-27 12:49:42 : fiona.env] No GDAL environment exists
[DEBUG: 2021-05-27 12:49:42 : fiona.env] New GDAL environment <fiona._env.GDALEnv object at 0x7ffd5b819d90> created
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Logging error handler pushed.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] All drivers registered.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] GDAL_DATA found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/gdal'.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] PROJ_LIB found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/proj'.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Started GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b819d90>.
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Updated existing <fiona._env.GDALEnv object at 0x7ffd5b819d90> with options {}
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Entered env context: <fiona.env.Env object at 0x7ffd5751b390>
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Got a copy of environment <fiona._env.GDALEnv object at 0x7ffd5b819d90> options
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Credentialized: {'CHECK_WITH_INVERT_PROJ': True, 'GTIFF_IMPLICIT_JPEG_OVR': False, 'FIONA_ENV': True, 'GDAL_DATA': '/Users/kyleziolkowski/anaconda2/envs/satdev/share/gdal'}
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Exiting env context: <fiona.env.Env object at 0x7ffd5751b390>
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Cleared existing <fiona._env.GDALEnv object at 0x7ffd5b819d90> options
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Stopping GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b819d90>.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Error handler popped.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Stopped GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b819d90>.
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Exiting outermost env
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Exited env context: <fiona.env.Env object at 0x7ffd5751b390>
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Entering env context: <fiona.env.Env object at 0x7ffd5b808350>
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Starting outermost env
[DEBUG: 2021-05-27 12:49:42 : fiona.env] No GDAL environment exists
[DEBUG: 2021-05-27 12:49:42 : fiona.env] New GDAL environment <fiona._env.GDALEnv object at 0x7ffd5b819d90> created
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Logging error handler pushed.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] All drivers registered.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] GDAL_DATA found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/gdal'.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] PROJ_LIB found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/proj'.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Started GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b819d90>.
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Updated existing <fiona._env.GDALEnv object at 0x7ffd5b819d90> with options {}
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Entered env context: <fiona.env.Env object at 0x7ffd5b808350>
[DEBUG: 2021-05-27 12:49:42 : fiona.ogrext] Index: 0
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Exiting env context: <fiona.env.Env object at 0x7ffd5b808350>
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Cleared existing <fiona._env.GDALEnv object at 0x7ffd5b819d90> options
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Stopping GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b819d90>.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Error handler popped.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Stopped GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b819d90>.
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Exiting outermost env
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Exited env context: <fiona.env.Env object at 0x7ffd5b808350>
[DEBUG: 2021-05-27 12:49:42 : fiona.collection] Flushed buffer
[DEBUG: 2021-05-27 12:49:42 : fiona.collection] Stopped session
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Entering env context: <fiona.env.Env object at 0x7ffd5b0ba910>
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Starting outermost env
[DEBUG: 2021-05-27 12:49:42 : fiona.env] No GDAL environment exists
[DEBUG: 2021-05-27 12:49:42 : fiona.env] New GDAL environment <fiona._env.GDALEnv object at 0x7ffd5aff7810> created
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Logging error handler pushed.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] All drivers registered.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] GDAL_DATA found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/gdal'.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] PROJ_LIB found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/proj'.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Started GDALEnv <fiona._env.GDALEnv object at 0x7ffd5aff7810>.
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Updated existing <fiona._env.GDALEnv object at 0x7ffd5aff7810> with options {}
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Entered env context: <fiona.env.Env object at 0x7ffd5b0ba910>
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Got a copy of environment <fiona._env.GDALEnv object at 0x7ffd5aff7810> options
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Credentialized: {'CHECK_WITH_INVERT_PROJ': True, 'GTIFF_IMPLICIT_JPEG_OVR': False, 'FIONA_ENV': True, 'GDAL_DATA': '/Users/kyleziolkowski/anaconda2/envs/satdev/share/gdal'}
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Exiting env context: <fiona.env.Env object at 0x7ffd5b0ba910>
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Cleared existing <fiona._env.GDALEnv object at 0x7ffd5aff7810> options
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Stopping GDALEnv <fiona._env.GDALEnv object at 0x7ffd5aff7810>.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Error handler popped.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Stopped GDALEnv <fiona._env.GDALEnv object at 0x7ffd5aff7810>.
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Exiting outermost env
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Exited env context: <fiona.env.Env object at 0x7ffd5b0ba910>
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Entering env context: <fiona.env.Env object at 0x7ffd5afdaad0>
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Starting outermost env
[DEBUG: 2021-05-27 12:49:42 : fiona.env] No GDAL environment exists
[DEBUG: 2021-05-27 12:49:42 : fiona.env] New GDAL environment <fiona._env.GDALEnv object at 0x7ffd5b2a5290> created
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Logging error handler pushed.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] All drivers registered.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] GDAL_DATA found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/gdal'.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] PROJ_LIB found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/proj'.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Started GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b2a5290>.
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Updated existing <fiona._env.GDALEnv object at 0x7ffd5b2a5290> with options {}
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Entered env context: <fiona.env.Env object at 0x7ffd5afdaad0>
[DEBUG: 2021-05-27 12:49:42 : fiona.ogrext] Index: 0
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Exiting env context: <fiona.env.Env object at 0x7ffd5afdaad0>
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Cleared existing <fiona._env.GDALEnv object at 0x7ffd5b2a5290> options
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Stopping GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b2a5290>.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Error handler popped.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Stopped GDALEnv <fiona._env.GDALEnv object at 0x7ffd5b2a5290>.
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Exiting outermost env
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Exited env context: <fiona.env.Env object at 0x7ffd5afdaad0>
[DEBUG: 2021-05-27 12:49:42 : fiona.collection] Flushed buffer
[DEBUG: 2021-05-27 12:49:42 : fiona.collection] Stopped session
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Entering env context: <fiona.env.Env object at 0x7ffd5b371f10>
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Starting outermost env
[DEBUG: 2021-05-27 12:49:42 : fiona.env] No GDAL environment exists
[DEBUG: 2021-05-27 12:49:42 : fiona.env] New GDAL environment <fiona._env.GDALEnv object at 0x7ffd5affdc90> created
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Logging error handler pushed.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] All drivers registered.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] GDAL_DATA found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/gdal'.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] PROJ_LIB found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/proj'.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Started GDALEnv <fiona._env.GDALEnv object at 0x7ffd5affdc90>.
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Updated existing <fiona._env.GDALEnv object at 0x7ffd5affdc90> with options {}
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Entered env context: <fiona.env.Env object at 0x7ffd5b371f10>
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Got a copy of environment <fiona._env.GDALEnv object at 0x7ffd5affdc90> options
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Credentialized: {'CHECK_WITH_INVERT_PROJ': True, 'GTIFF_IMPLICIT_JPEG_OVR': False, 'FIONA_ENV': True, 'GDAL_DATA': '/Users/kyleziolkowski/anaconda2/envs/satdev/share/gdal'}
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Exiting env context: <fiona.env.Env object at 0x7ffd5b371f10>
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Cleared existing <fiona._env.GDALEnv object at 0x7ffd5affdc90> options
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Stopping GDALEnv <fiona._env.GDALEnv object at 0x7ffd5affdc90>.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Error handler popped.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Stopped GDALEnv <fiona._env.GDALEnv object at 0x7ffd5affdc90>.
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Exiting outermost env
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Exited env context: <fiona.env.Env object at 0x7ffd5b371f10>
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Entering env context: <fiona.env.Env object at 0x7ffd5b362610>
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Starting outermost env
[DEBUG: 2021-05-27 12:49:42 : fiona.env] No GDAL environment exists
[DEBUG: 2021-05-27 12:49:42 : fiona.env] New GDAL environment <fiona._env.GDALEnv object at 0x7ffd5affdc90> created
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Logging error handler pushed.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] All drivers registered.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] GDAL_DATA found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/gdal'.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] PROJ_LIB found in environment: '/Users/kyleziolkowski/anaconda2/envs/satdev/share/proj'.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Started GDALEnv <fiona._env.GDALEnv object at 0x7ffd5affdc90>.
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Updated existing <fiona._env.GDALEnv object at 0x7ffd5affdc90> with options {}
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Entered env context: <fiona.env.Env object at 0x7ffd5b362610>
[DEBUG: 2021-05-27 12:49:42 : fiona.ogrext] Index: 0
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Exiting env context: <fiona.env.Env object at 0x7ffd5b362610>
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Cleared existing <fiona._env.GDALEnv object at 0x7ffd5affdc90> options
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Stopping GDALEnv <fiona._env.GDALEnv object at 0x7ffd5affdc90>.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Error handler popped.
[DEBUG: 2021-05-27 12:49:42 : fiona._env] Stopped GDALEnv <fiona._env.GDALEnv object at 0x7ffd5affdc90>.
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Exiting outermost env
[DEBUG: 2021-05-27 12:49:42 : fiona.env] Exited env context: <fiona.env.Env object at 0x7ffd5b362610>
[DEBUG: 2021-05-27 12:49:42 : fiona.collection] Flushed buffer
[DEBUG: 2021-05-27 12:49:42 : fiona.collection] Stopped session
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: Matching sans\-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=14.0.
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'cmsy10' (cmsy10.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'cmex10' (cmex10.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Bold.ttf) normal normal bold normal>) = 0.33499999999999996
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Bold.ttf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-BoldItalic.ttf) italic normal bold normal>) = 11.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.ttf) italic normal bold normal>) = 11.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'DejaVu Sans Display' (DejaVuSansDisplay.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.ttf) italic normal bold normal>) = 11.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Bold.ttf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-BoldOblique.ttf) oblique normal bold normal>) = 11.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'cmtt10' (cmtt10.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.ttf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.ttf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.ttf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'cmr10' (cmr10.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'cmss10' (cmss10.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'cmb10' (cmb10.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.ttf) italic normal 400 normal>) = 11.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.ttf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'cmmi10' (cmmi10.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'DejaVu Sans' (DejaVuSans.ttf) normal normal 400 normal>) = 0.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'DejaVu Serif' (DejaVuSerif-Italic.ttf) italic normal 400 normal>) = 11.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'DejaVu Sans' (DejaVuSans-BoldOblique.ttf) oblique normal bold normal>) = 1.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXGeneral' (STIXGeneral.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.ttf) italic normal 400 normal>) = 11.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'DejaVu Sans Mono' (DejaVuSansMono-Oblique.ttf) oblique normal 400 normal>) = 11.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'DejaVu Sans' (DejaVuSans-Oblique.ttf) oblique normal 400 normal>) = 1.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.ttf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'DejaVu Serif Display' (DejaVuSerifDisplay.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.ttf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'DejaVu Serif' (DejaVuSerif.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXGeneral' (STIXGeneralBolIta.otf) italic normal bold normal>) = 11.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Inscriptional Parthian' (NotoSansInscriptionalParthian-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Arial Black' (Arial Black.ttf) normal normal black normal>) = 10.525
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Bangla MN' (Bangla MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Kharoshthi' (NotoSansKharoshthi-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Trebuchet MS' (Trebuchet MS Italic.ttf) italic normal 400 normal>) = 11.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Bodoni 72 Oldstyle' (Bodoni 72 OS.ttc) normal normal book normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'PT Mono' (PTMono.ttc) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Al Nile' (Al Nile.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXGeneral' (STIXGeneralBol.otf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Lucida Grande' (LucidaGrande.ttc) normal normal 400 normal>) = 2.777272727272727
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font '.SF Compact Display' (SFCompactDisplay.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font '.SF NS Display Condensed' (SFNSDisplayCondensed-Regular.otf) normal normal regular condensed>) = 10.25
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Tai Tham' (NotoSansTaiTham-Regular.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Old Italic' (NotoSansOldItalic-Regular.ttf) italic normal regular normal>) = 11.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font '.SF NS Display Condensed' (SFNSDisplayCondensed-Medium.otf) normal normal medium condensed>) = 10.344999999999999
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Impact' (Impact.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'PT Serif Caption' (PTSerifCaption.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Apple Braille' (Apple Braille Pinpoint 8 Dot.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Verdana' (Verdana Bold Italic.ttf) italic normal bold normal>) = 4.971363636363637
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Hiragino Sans GB' (Hiragino Sans GB.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Syloti Nagri' (NotoSansSylotiNagri-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Avenir Next Condensed' (Avenir Next Condensed.ttc) normal normal bold condensed>) = 10.535
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Saurashtra' (NotoSansSaurashtra-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Chalkboard' (Chalkboard.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Hiragino Maru Gothic Pro' (ヒラギノ丸ゴ ProN W4.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Bangla Sangam MN' (Bangla Sangam MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Comic Sans MS' (Comic Sans MS.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Gurmukhi Sangam MN' (Gurmukhi Sangam MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Rockwell' (Rockwell.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Hiragino Sans' (ヒラギノ角ゴシック W4.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Buginese' (NotoSansBuginese-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Imperial Aramaic' (NotoSansImperialAramaic-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Egyptian Hieroglyphs' (NotoSansEgyptianHieroglyphs-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font '.SF NS Display Condensed' (SFNSDisplayCondensed-Thin.otf) normal normal 400 condensed>) = 10.25
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Arial Narrow' (Arial Narrow Bold.ttf) normal normal bold condensed>) = 10.535
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Silom' (Silom.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Ogham' (NotoSansOgham-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Plantagenet Cherokee' (PlantagenetCherokee.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBolIta.otf) italic normal bold normal>) = 11.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Cuneiform' (NotoSansCuneiform-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Courier New' (Courier New Italic.ttf) italic normal 400 normal>) = 11.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Times New Roman' (Times New Roman.ttf) normal normal roman normal>) = 10.145
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Ol Chiki' (NotoSansOlChiki-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Malayalam Sangam MN' (Malayalam Sangam MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Inscriptional Pahlavi' (NotoSansInscriptionalPahlavi-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Savoye LET' (Savoye LET.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font '.Keyboard' (Keyboard.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Gujarati MT' (GujaratiMT.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Helvetica' (Helvetica.ttc) normal normal 400 normal>) = 7.322727272727273
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Tagalog' (NotoSansTagalog-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Hiragino Sans' (ヒラギノ角ゴシック W9.ttc) normal normal 700 normal>) = 10.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Andale Mono' (Andale Mono.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Kayah Li' (NotoSansKayahLi-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Arial Narrow' (Arial Narrow Bold Italic.ttf) italic normal bold condensed>) = 11.535
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Tamil Sangam MN' (Tamil Sangam MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Times' (Times.ttc) normal normal roman normal>) = 10.145
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Trebuchet MS' (Trebuchet MS Bold.ttf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font '.Arabic UI Text' (ArabicUIText.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Arial Unicode MS' (Arial Unicode.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'TeamViewer12' (TeamViewer12.otf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Lepcha' (NotoSansLepcha-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Herculanum' (Herculanum.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXIntegralsUpD' (STIXIntUpDReg.otf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Courier New' (Courier New.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Geeza Pro' (GeezaPro.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Batak' (NotoSansBatak-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Arial' (Arial Bold Italic.ttf) italic normal bold normal>) = 7.698636363636363
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXIntegralsUpD' (STIXIntUpDBol.otf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font '.SF NS Text Condensed' (SFNSTextCondensed-Heavy.otf) normal normal heavy condensed>) = 10.629999999999999
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Myanmar' (NotoSansMyanmar.ttc) normal normal black normal>) = 10.525
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Carian' (NotoSansCarian-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXNonUnicode' (STIXNonUni.otf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Shavian' (NotoSansShavian-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Lydian' (NotoSansLydian-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Brush Script MT' (Brush Script.ttf) italic normal 400 normal>) = 11.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Verdana' (Verdana Bold.ttf) normal normal bold normal>) = 3.9713636363636367
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Zapf Dingbats' (ZapfDingbats.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Khmer Sangam MN' (Khmer Sangam MN.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Phosphate' (Phosphate.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Athelas' (Athelas.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Bamum' (NotoSansBamum-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Apple Braille' (Apple Braille Pinpoint 6 Dot.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Mandaic' (NotoSansMandaic-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXIntegralsUp' (STIXIntUpBol.otf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Luminari' (Luminari.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Palatino' (Palatino.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Sinhala MN' (Sinhala MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Kohinoor Devanagari' (Kohinoor.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Vai' (NotoSansVai-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Apple Braille' (Apple Braille Outline 8 Dot.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Comic Sans MS' (Comic Sans MS Bold.ttf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymBol.otf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Webdings' (Webdings.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Ayuthaya' (Ayuthaya.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Heiti TC' (STHeiti Light.ttc) normal normal light normal>) = 10.24
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Symbol' (Symbol.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Kohinoor Bangla' (KohinoorBangla.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Avenir' (Avenir.ttc) normal normal book normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'STIXIntegralsUpSm' (STIXIntUpSmReg.otf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Syriac' (NotoSansSyriac-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Hiragino Sans' (ヒラギノ角ゴシック W2.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Arial Narrow' (Arial Narrow.ttf) normal normal 400 condensed>) = 10.25
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Apple Braille' (Apple Braille.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Rejang' (NotoSansRejang-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'PT Sans' (PTSans.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Runic' (NotoSansRunic-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:42 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Osmanya' (NotoSansOsmanya-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Devanagari MT' (DevanagariMT.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Kefa' (Kefa.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'PingFang HK' (PingFang.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Kannada MN' (Kannada MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Helvetica Neue' (HelveticaNeue.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Mishafi Gold' (Mishafi Gold.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Hiragino Sans' (ヒラギノ角ゴシック W0.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Heiti TC' (STHeiti Medium.ttc) normal normal medium normal>) = 10.145
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Arial' (Arial Italic.ttf) italic normal 400 normal>) = 7.413636363636363
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'PT Serif' (PTSerif.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'STIXGeneral' (STIXGeneral.otf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.SF NS Display Condensed' (SFNSDisplayCondensed-Bold.otf) normal normal bold condensed>) = 10.535
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Devanagari Sangam MN' (Devanagari Sangam MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Tamil MN' (Tamil MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans NKo' (NotoSansNKo-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noteworthy' (Noteworthy.ttc) normal normal light normal>) = 10.24
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'STIXNonUnicode' (STIXNonUniIta.otf) italic normal 400 normal>) = 11.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'STIXIntegralsUp' (STIXIntUpReg.otf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Krungthep' (Krungthep.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Big Caslon' (BigCaslon.ttf) normal normal medium normal>) = 10.145
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Glagolitic' (NotoSansGlagolitic-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Optima' (Optima.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Trattatello' (Trattatello.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Sukhumvit Set' (SukhumvitSet.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Tagbanwa' (NotoSansTagbanwa-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Gothic' (NotoSansGothic-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.SF NS Rounded' (SFNSRounded.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Lao MN' (Lao MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.LastResort' (LastResort.otf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.SF NS Display Condensed' (SFNSDisplayCondensed-Light.otf) normal normal light condensed>) = 10.44
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Wingdings 3' (Wingdings 3.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Hiragino Mincho ProN' (ヒラギノ明朝 ProN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Papyrus' (Papyrus.ttc) normal normal 400 condensed>) = 10.25
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Georgia' (Georgia Italic.ttf) italic normal 400 normal>) = 11.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Courier New' (Courier New Bold Italic.ttf) italic normal bold normal>) = 11.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'American Typewriter' (AmericanTypewriter.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Cochin' (Cochin.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'DIN Alternate' (DIN Alternate Bold.ttf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Coptic' (NotoSansCoptic-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymBol.otf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Raanana' (Raanana.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Hiragino Sans' (ヒラギノ角ゴシック W3.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'InaiMathi' (InaiMathi-MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Verdana' (Verdana.ttf) normal normal 400 normal>) = 3.6863636363636365
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Tahoma' (Tahoma.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Limbu' (NotoSansLimbu-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Mukta Mahee' (MuktaMahee.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Copperplate' (Copperplate.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Phoenician' (NotoSansPhoenician-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'ITF Devanagari' (ITFDevanagari.ttc) normal normal book normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymReg.otf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Microsoft Sans Serif' (Microsoft Sans Serif.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Serif Balinese' (NotoSerifBalinese-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Charter' (Charter.ttc) normal normal roman normal>) = 10.145
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Thonburi' (Thonburi.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Thaana' (NotoSansThaana-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Kohinoor Gujarati' (KohinoorGujarati.ttc) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Apple Symbols' (Apple Symbols.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Chalkduster' (Chalkduster.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'STIXVariants' (STIXVar.otf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Sana' (Sana.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.SF NS Display Condensed' (SFNSDisplayCondensed-Semibold.otf) normal normal semibold condensed>) = 10.44
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Shree Devanagari 714' (Shree714.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Farisi' (Farisi.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.SF Compact Text' (SFCompactTextItalic.ttf) italic normal 400 normal>) = 11.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Mshtakan' (Mshtakan.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Iowan Old Style' (Iowan Old Style.ttc) normal normal roman normal>) = 10.145
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Myanmar Sangam MN' (Myanmar Sangam MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Songti SC' (Songti.ttc) normal normal black normal>) = 10.525
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Meetei Mayek' (NotoSansMeeteiMayek-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Verdana' (Verdana Italic.ttf) italic normal 400 normal>) = 4.6863636363636365
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Lycian' (NotoSansLycian-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Khmer MN' (Khmer MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans New Tai Lue' (NotoSansNewTaiLue-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Gurmukhi MN' (Gurmukhi MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Linear B' (NotoSansLinearB-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.SF NS Display Condensed' (SFNSDisplayCondensed-Heavy.otf) normal normal heavy condensed>) = 10.629999999999999
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Beirut' (Beirut.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Baskerville' (Baskerville.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Wingdings 2' (Wingdings 2.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Seravek' (Seravek.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Diwan Kufi' (Diwan Kufi.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Zapfino' (Zapfino.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'System Font' (SFNS.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Javanese' (NotoSansJavanese-Regular.otf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Futura' (Futura.ttc) normal normal medium normal>) = 10.145
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Gurmukhi MT' (Gurmukhi.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Gill Sans' (GillSans.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymBol.otf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.Arabic UI Display' (ArabicUIDisplay.ttc) normal normal black normal>) = 10.525
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Lao Sangam MN' (Lao Sangam MN.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Corsiva Hebrew' (Corsiva.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Apple SD Gothic Neo' (AppleSDGothicNeo.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Times New Roman' (Times New Roman Italic.ttf) italic normal roman normal>) = 11.145
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'STIXSizeThreeSym' (STIXSizThreeSymReg.otf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Diwan Thuluth' (Diwan Thuluth.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Malayalam MN' (Malayalam MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Tai Le' (NotoSansTaiLe-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Chakma' (NotoSansChakma-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Tai Viet' (NotoSansTaiViet-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Georgia' (Georgia Bold.ttf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.Helvetica Neue DeskInterface' (HelveticaNeueDeskInterface.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Hanunoo' (NotoSansHanunoo-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.SF NS Mono' (SFNSMono.ttf) normal normal light normal>) = 10.24
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Old Persian' (NotoSansOldPersian-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'STIXVariants' (STIXVarBol.otf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Myanmar MN' (Myanmar MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Bodoni 72 Smallcaps' (Bodoni 72 Smallcaps Book.ttf) normal normal book normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Ugaritic' (NotoSansUgaritic-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'AppleGothic' (AppleGothic.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Baghdad' (Baghdad.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Hiragino Sans' (ヒラギノ角ゴシック W8.ttc) normal normal 700 normal>) = 10.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Oriya' (NotoSansOriya.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Arial' (Arial Bold.ttf) normal normal bold normal>) = 6.698636363636363
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.New York' (NewYork.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Arial Hebrew' (ArialHB.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Sundanese' (NotoSansSundanese-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.SF NS Text Condensed' (SFNSTextCondensed-Bold.otf) normal normal bold condensed>) = 10.535
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'STIXIntegralsSm' (STIXIntSmReg.otf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Hiragino Sans' (ヒラギノ角ゴシック W7.ttc) normal normal 700 normal>) = 10.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Tahoma' (Tahoma Bold.ttf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Mongolian' (NotoSansMongolian-Regular.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Wingdings' (Wingdings.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'SignPainter' (SignPainter.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Damascus' (Damascus.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Arial' (Arial.ttf) normal normal 400 normal>) = 6.413636363636363
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'New Peninim MT' (NewPeninimMT.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Hiragino Sans' (ヒラギノ角ゴシック W1.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'STIXIntegralsUpSm' (STIXIntUpSmBol.otf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Hiragino Sans' (ヒラギノ角ゴシック W6.ttc) normal normal 700 normal>) = 10.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Trebuchet MS' (Trebuchet MS.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Avenir Next' (Avenir Next.ttc) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.SF NS Text Condensed' (SFNSTextCondensed-Medium.otf) normal normal medium condensed>) = 10.344999999999999
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Skia' (Skia.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Oriya Sangam MN' (Oriya Sangam MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Times New Roman' (Times New Roman Bold Italic.ttf) italic normal roman normal>) = 11.145
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Serif Myanmar' (NotoSerifMyanmar.ttc) normal normal black normal>) = 10.525
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Georgia' (Georgia.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Bradley Hand' (Bradley Hand Bold.ttf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.SF NS Text Condensed' (SFNSTextCondensed-Light.otf) normal normal light condensed>) = 10.44
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Old Turkic' (NotoSansOldTurkic-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Nadeem' (Nadeem.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'STIXNonUnicode' (STIXNonUniBol.otf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.SF NS Display Condensed' (SFNSDisplayCondensed-Black.otf) normal normal black condensed>) = 10.725
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Tifinagh' (NotoSansTifinagh-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Marion' (Marion.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Oriya MN' (Oriya MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'STIXSizeFiveSym' (STIXSizFiveSymReg.otf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Al Tarikh' (Al Tarikh.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Kannada' (NotoSansKannada.ttc) normal normal black normal>) = 10.525
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Kailasa' (Kailasa.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Gujarati Sangam MN' (Gujarati Sangam MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Snell Roundhand' (SnellRoundhand.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Muna' (Muna.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Samaritan' (NotoSansSamaritan-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Menlo' (Menlo.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Buhid' (NotoSansBuhid-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Kannada Sangam MN' (Kannada Sangam MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Brahmi' (NotoSansBrahmi-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.SF NS Text Condensed' (SFNSTextCondensed-Regular.otf) normal normal regular condensed>) = 10.25
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'DIN Condensed' (DIN Condensed Bold.ttf) normal normal bold condensed>) = 10.535
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Bodoni Ornaments' (Bodoni Ornaments.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.SF NS Display Condensed' (SFNSDisplayCondensed-Ultralight.otf) normal normal ultralight condensed>) = 10.535
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Courier New' (Courier New Bold.ttf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Georgia' (Georgia Bold Italic.ttf) italic normal bold normal>) = 11.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Avestan' (NotoSansAvestan-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'STIXSizeTwoSym' (STIXSizTwoSymBol.otf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Sinhala Sangam MN' (Sinhala Sangam MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Hiragino Sans' (ヒラギノ角ゴシック W5.ttc) normal normal 700 normal>) = 10.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'STIXIntegralsD' (STIXIntDReg.otf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Marker Felt' (MarkerFelt.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'System Font' (SFNSItalic.ttf) italic normal regular normal>) = 11.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.SF Compact Text' (SFCompactText.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.SF NS Text Condensed' (SFNSTextCondensed-Semibold.otf) normal normal semibold condensed>) = 10.44
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'STIXSizeOneSym' (STIXSizOneSymReg.otf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Mishafi' (Mishafi.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Sathu' (Sathu.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.SF Compact Rounded' (SFCompactRounded.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Kokonor' (Kokonor.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Al Bayan' (AlBayan.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Hoefler Text' (Hoefler Text Ornaments.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Nastaliq Urdu' (NotoNastaliq.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Arial Rounded MT Bold' (Arial Rounded Bold.ttf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Cypriot' (NotoSansCypriot-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Arial Narrow' (Arial Narrow Italic.ttf) italic normal 400 condensed>) = 11.25
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Farah' (Farah.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Apple Braille' (Apple Braille Outline 6 Dot.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Trebuchet MS' (Trebuchet MS Bold Italic.ttf) italic normal bold normal>) = 11.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Yi' (NotoSansYi-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Hoefler Text' (Hoefler Text.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Kaithi' (NotoSansKaithi-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'AppleMyungjo' (AppleMyungjo.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'STIXIntegralsD' (STIXIntDBol.otf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'STIXGeneral' (STIXGeneralItalic.otf) italic normal 400 normal>) = 11.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Cham' (NotoSansCham-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans PhagsPa' (NotoSansPhagsPa-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Telugu Sangam MN' (Telugu Sangam MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Euphemia UCAS' (EuphemiaCAS.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.Aqua Kana' (AquaKana.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Galvji' (Galvji.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'DecoType Naskh' (DecoTypeNaskh.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Didot' (Didot.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Armenian' (NotoSansArmenian.ttc) normal normal black normal>) = 10.525
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Times New Roman' (Times New Roman Bold.ttf) normal normal roman normal>) = 10.145
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Kohinoor Telugu' (KohinoorTelugu.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Apple Chancery' (Apple Chancery.ttf) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Bodoni 72' (Bodoni 72.ttc) normal normal book normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Old South Arabian' (NotoSansOldSouthArabian-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'STIXIntegralsSm' (STIXIntSmBol.otf) normal normal bold normal>) = 10.335
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Waseem' (Waseem.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Noto Sans Lisu' (NotoSansLisu-Regular.ttf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.SF NS Mono' (SFNSMonoItalic.ttf) italic normal light normal>) = 11.24
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font '.New York' (NewYorkItalic.ttf) italic normal 400 normal>) = 11.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Telugu MN' (Telugu MN.ttc) normal normal 400 normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'STIXSizeFourSym' (STIXSizFourSymReg.otf) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Chalkboard SE' (ChalkboardSE.ttc) normal normal light normal>) = 10.24
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'Superclarendon' (SuperClarendon.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: score(<Font 'KufiStandardGK' (KufiStandardGK.ttc) normal normal regular normal>) = 10.05
[DEBUG: 2021-05-27 12:49:43 : matplotlib.font_manager] findfont: Matching sans\-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=14.0 to DejaVu Sans ('/Users/kyleziolkowski/anaconda2/envs/satdev/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf') with score of 0.050000.
Process Complete..... Total time = 1 mins 12 seconds

Environment Info:

djhoese commented 2 years ago

Sorry that this got lost in our inboxes. Did you find a solution to your problem? If not, can you try with the most recent release of Satpy as I think I had made some fixes to the IRSandwich compositor around the time you made this issue.