python convert_wpt_cup.py poitiers_vfr.csv --name LFBI
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
Verifying my Blockstack ID is secured with the address 1NQUNhtmNySVkxQY6pSoe9brezGLdg5V3o https://explorer.blockstack.org/address/1NQUNhtmNySVkxQY6pSoe9brezGLdg5V3o |
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
name = "PolarCurve" | |
license = "MIT" | |
authors = ["Sébastien Celles <[email protected]>"] | |
version = "0.0.1" | |
[deps] | |
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b" | |
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" | |
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" | |
Polynomials = "f27b6e38-b328-58d1-80ce-0feddd5e7a45" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
####################################################################### | |
#### Script Boxstarter maintenance PC #### | |
#### Installation et mise en route des application pour PC basique #### | |
####################################################################### | |
########## Définition des paramétre Windows | |
Set-StartScreenOptions -EnableBootToDesktop | |
Set-TaskbarOptions -Lock | |
########## Mise à jour Windows |
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: ruby -*- | |
# vi: set ft=ruby : | |
# Base box: https://github.com/akrabat/packer-templates | |
Vagrant.configure("2") do |config| | |
config.vm.box = "19ft/windows2016" | |
config.vm.guest = :windows | |
config.vm.boot_timeout = 600 |
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
Function Out-AIRACCycles | |
{ | |
Param ( [DateTime] $currentDay = ( Get-Date ) | |
, [DateTime] $initialDay = ( Get-Date -Year 2015 -Month 1 -Day 8 ) | |
, $interval = 28 | |
, $culture = [System.Globalization.CultureInfo]::GetCultureInfo("en-US") ) | |
$offset = (New-TimeSpan -Start $initialDay -End ( Get-Date -Year ( $currentDay.Year - 1 ) -Month 1 -Day 1 ) ).Days | |
$offset .. ( $offset + 365 * 3 ) | |
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
# génération auto par gdal du fichier XML de description du service WMTS | |
gdal_translate "WMTS:https://wxs.ign.fr/an7nvfzojv5wa96dsga5nk8w/geoportail/wmts?Service=WMTS&Request=GetCapabilities&Version=1.0.0,layer=TRANSPORTS.DRONES.RESTRICTIONS" drones.xml -of WMTS | |
# téléchargement des tuiles et sortie en geotiff | |
gdal_translate drones.xml drones.tif -co COMPRESS=DEFLATE -co TILED=YES |
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
using Luxor, MiniFB, Colors | |
mutable struct Guilloche | |
f1::Float64 | |
f2::Float64 | |
f3::Float64 | |
f4::Float64 | |
# damping factors: increase to make the energy losses faster | |
xd1::Float64 | |
xd2::Float64 |
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/python | |
# coding=utf-8 | |
import requests | |
# Track ids to download | |
tracks = [ | |
'9319946', | |
'9319955', | |
... |