View .block
ae534a5cedfa284086717f1814bafe81 |
View .block
eda813560c801474904004d6b6b1cc4c |
View .block
a0b505c3d0e42cfbdf39b0d2c19ada0c | |
View .block
0b0995536ec3e691cec6725783870a70 |
View .block
f906ae2bab36f03a59c78e8d669aa68c |
View .block
13029d084201f5012391e231215961f0 |
View .block
4ab7848d451694667830d91712759cc5 |
View .block
f2605e92dff3a976d97ae6027d07f6b5 | |
View sublime-keymap.js
[ | |
{ "keys": ["ctrl+alt+b"], "command": "toggle_comment", "args": { "block": true } }, | |
{ "keys": ["ctrl+alt+p"], "command": "autoprefixer" }, | |
// console.log() | |
{ "keys": ["ctrl+alt+c", "ctrl+alt+o", "ctrl+alt+n"], "command": "insert_snippet", "args": {"contents": "console.log($0);"}, "context": | |
[ | |
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true }, | |
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true } | |
] |
View translate_ine_projection.py
# returns latlng | |
def get_maxmin_latlon_region(region): | |
lon_max = -180 | |
lon_min = 180 | |
lat_max = -90 | |
lat_min = 90 | |
if region['type'] == 'Polygon': | |
for polygon in region['coordinates']: | |
for point in polygon: |