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
__author__ = 't-joelm' | |
import glob, os | |
import csv | |
def rename(dir, pattern, titlePattern) | |
for pathAndFilename in glob.iglob(os.path.join(dir, pattern)): | |
title, ext = os.path.splitext(os.path.basename(pathAndFilename)) | |
os.rename(pathAndFilename, | |
os.path.join(dir, titlePattern % title + ext)) |
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
If you have a list of hyperlinks in Markdown, strip out extraneous text and put them into a text file (list.tst). | |
Using bash, enter the following command: | |
awk '{ print "<a href=" $o "</a>"}' list.txt > list-edit.txt |
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 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
""" | |
poached from: https://raw.githubusercontent.com/klakar/QGIS_resources/master/collections/Geosupportsystem/python/qgis_basemaps.py | |
This script should be run from the Python console inside QGIS. | |
It adds online sources to the QGIS Browser. | |
Each source should contain a list with the folowing items (string type): | |
[sourcetype, title, authconfig, password, referer, url, username, zmax, zmin] | |
You can add or remove sources from the sources section of the code. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer