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
// | |
// FreeSpaceViewController.swift | |
// Free Space | |
// | |
// Created by Kyle Howells on 04/05/2022. | |
// | |
import UIKit | |
class FreeSpaceViewController: UIViewController { |
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 urllib.request | |
import numpy as np | |
from scipy.spatial import cKDTree | |
import cartopy.crs as ccrs | |
import cartopy.feature as cfeature | |
from scipy.ndimage import gaussian_filter | |
from datetime import datetime | |
import matplotlib.pyplot as plt | |
fp = urllib.request.urlopen("http://www.spotternetwork.org/feeds/gr-no.txt") | |
objs = [] |