This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | version: '3.1' | |
| services: | |
| unifi: | |
| container_name: unifi | |
| restart: unless-stopped | |
| image: linuxserver/unifi | |
| volumes: | |
| - /srv/docker/unifi:/config | |
| environment: | |
| - PGID=0 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | type: entities | |
| title: Reminders | |
| entities: | |
| - entity: input_text.reminder_description | |
| name: Message | |
| - entity: input_select.reminder_recipient | |
| - entity: input_datetime.reminder_tracker | |
| name: Reminder date and time | |
| - type: custom:config-template-card | |
| entities: | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | ## Requires MQTT to be configured prior to use | |
| ## UI requires custom cards: auto-entities, config-template-card, template-entity-row | |
| automation: | |
| - alias: Reminder - Send next reminder | |
| id: 'Send next reminder' | |
| description: "" | |
| trigger: | |
| - platform: time | |
| at: sensor.next_reminder | |
| condition: [] | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import numpy as np | |
| import pandas as pd | |
| import rasterio | |
| from rasterio.transform import from_origin | |
| from rasterio.warp import calculate_default_transform, reproject, Resampling | |
| from pyproj import Transformer | |
| import scipy.sparse as sp | |
| from scipy.optimize import minimize, Bounds | |
| from matplotlib.path import Path | |
| from scipy.spatial import ConvexHull | 
OlderNewer