This file contains 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
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Explorer] | |
"DisableThumbsDBOnNetworkFolders"=dword:00000001 |
This file contains 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
# PS-BGInfo | |
# Powershell script that updates the background image with a random image from a folder and writes out system info text to it. | |
# run as a lower priority task | |
[System.Threading.Thread]::CurrentThread.Priority = 'BelowNormal' | |
# Configuration: | |
# Font Family name | |
$font="Input" |
This file contains 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
# | |
# part of https://askubuntu.com/questions/1402336/apt-trying-to-fetch-versions-not-available-in-archive-ubuntu-com-ubuntu-pool-mai?noredirect=1#comment2434286_1402336 | |
# | |
(rio-viz) geoadmin@geonix:~$ sudo mv /var/lib/apt/lists/* apt-temp/ | |
[sudo] password for geoadmin: | |
(rio-viz) geoadmin@geonix:~$ ls /var/lib/apt/lists | |
(rio-viz) geoadmin@geonix:~$ sudo apt update | |
Get:1 https://mirror.it.ubc.ca/ubuntu focal InRelease [265 kB] | |
Get:2 https://download.docker.com/linux/ubuntu focal InRelease [57.7 kB] | |
Get:3 http://archive.ubuntu.com/ubuntu focal InRelease [265 kB] |
This file contains 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
# | |
# a console output snippet that shows conda does downgrade to older version of currently installed package | |
# https://stackoverflow.com/questions/23974217/how-do-i-revert-to-a-previous-package-in-anaconda | |
# | |
$ conda install gdal=3.4.0 | |
Collecting package metadata (current_repodata.json): done | |
Solving environment: failed with initial frozen solve. Retrying with flexible solve. | |
Solving environment: done | |
Collecting package metadata (repodata.json): done | |
Solving environment: failed with initial frozen solve. Retrying with flexible solve. |
This file contains 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
'''Copy RPC metdata from IN raster to OUT raster | |
Adapted from @user7821537 | |
https://gis.stackexchange.com/questions/264644/transfer-rpc-metadata-from-one-geotiff-to-another | |
''' | |
import os | |
import sys | |
from osgeo import gdal | |
gdal.UseExceptions() |
This file contains 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
scoop uninstall scoop | |
$xlist = "$env:userprofile\scoop", "c:\apps\geo", "$env:userprofile\.condarc", "$env:userprofile\.conda", "$env:userprofile\.config\scoop" | |
foreach ($x in $xlist) { | |
if (Test-Path $x) { Remove-Item $x} | |
} |
This file contains 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
T:\ENV.558>if /I "C:\WINDOWS\system32\cmd.exe /c ``T:\ENV.558\setenv-testing.bat` `" EQU "`C:\WINDOWS\system32\cmd.exe` /C ``T:\ENV.558\setenv-testing.bat` `" pause |
This file contains 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
"""Generate a blog-style index page written in markdown. | |
A header line with link to page, followed by a few lines of the story. | |
""" | |
import os | |
from pathlib import Path | |
import dateutil.parser | |
from inspect import getsourcefile | |
here = os.path.dirname(os.path.abspath(getsourcefile(lambda:0))) |
This file contains 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
Driver: DIMAP/SPOT DIMAP | |
Files: DIM_SPOT6_MS_201308032015087_SEN_1.XML | |
IMG_SPOT6_MS_201308032015087_SEN_1_R1C1.TIF | |
IMG_SPOT6_MS_201308032015087_SEN_1_R1C2.TIF | |
IMG_SPOT6_MS_201308032015087_SEN_1_R1C3.TIF | |
IMG_SPOT6_MS_201308032015087_SEN_1_R1C4.TIF | |
IMG_SPOT6_MS_201308032015087_SEN_1_R2C1.TIF | |
IMG_SPOT6_MS_201308032015087_SEN_1_R2C2.TIF | |
IMG_SPOT6_MS_201308032015087_SEN_1_R2C3.TIF | |
IMG_SPOT6_MS_201308032015087_SEN_1_R2C4.TIF |
This file contains 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
# -*- coding: utf-8 -*- | |
import arcpy | |
from osgeo import gdal | |
gdal.UseExceptions() | |
class Toolbox(object): | |
def __init__(self): | |
"""Define the toolbox (the name of the toolbox is the name of the | |
.pyt file).""" | |
self.label = "Toolbox" |