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
| #!/usr/bin/env python3 | |
| import csv | |
| import subprocess | |
| import sys | |
| from datetime import date, datetime, timedelta | |
| from sqlalchemy import create_engine | |
| from sqlalchemy.sql import text |
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
| #!/usr/bin/env python3 | |
| import pandas as pd | |
| import sys | |
| from datetime import date, datetime, timedelta | |
| from sqlalchemy import create_engine | |
| from sqlalchemy.sql import text | |
| BASE_URL = "http://.../raw_data/dl.php?f={}" |
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
| # -*- mode: shell-script; -*- | |
| # | |
| # Coova-Chilli Default Configurations. | |
| # To customize, copy this file to /etc/chilli/config | |
| # and edit to your liking. This is included in shell scripts | |
| # that configure chilli and related programs before file 'config'. | |
| HS_LOC_ID="1" | |
| HS_LOC_NAME="xxxxxx" | |
| HS_NASID="xxxxx" |
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
| NUM_ITERS = 100000; | |
| % num2str statistics | |
| num2str_max = -Inf; | |
| num2str_min = Inf; | |
| num2str_sum = 0; | |
| % sprintf statistics | |
| sprintf_max = -Inf; | |
| sprintf_min = Inf; |
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 cartopy.io.shapereader as shapereader | |
| import shapely.geometry as sgeom | |
| MAP_RES = '110m' | |
| MAP_TYPE = 'physical' | |
| MAP_NAME = 'land' | |
| shape_data = shapereader.natural_earth(resolution=MAP_RES, category=MAP_TYPE, name=MAP_NAME) | |
| lands = shapereader.Reader(shape_data).geometries() |