#!/usr/bin/env bash
# Assuming OS X Yosemite 10.10.4
# Install XCode and command line tools
# See https://itunes.apple.com/us/app/xcode/id497799835?mt=12#
# See https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man1/xcode-select.1.html
xcode-select --install
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
<?xml version="1.0" encoding="UTF-8" ?> | |
<metadata> | |
<idinfo> | |
<citation> | |
<citeinfo> | |
<origin>University of Alaska Fairbanks, Geophysical Institute</origin> | |
<pubdate>UPDATE</pubdate> | |
<title>UPDATE</title> |
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
# Found some old notes (2012) of the steps I used to create some contour lines | |
# derived from the SDMI IFSAR DEM | |
#### | |
# clipping out | |
gdal_translate -co TILED=YES -co COMPRESS=LZW -a_nodata -99999 -projwin 252983.504358 1469878.71763 340772.495973 1421881.9325 -of GTiff ../SDMI.IFSAR.2010.FUGRO/dirty-org/DSM.vrt SDMI-IFSAR-2010-DSM-watana_extract.tif | |
add_overviews.rb SDMI-IFSAR-2010-DSM-watana_extract.tif | |
gdal_translate -co TILED=YES -co COMPRESS=LZW -a_nodata -99999 -projwin 252983.504358 1469878.71763 340772.495973 1421881.9325 -of GTiff ../SDMI.IFSAR.2010.FUGRO/dirty-org/DTM.vrt SDMI-IFSAR-2010-DTM-watana_extract.tif | |
add_overviews.rb SDMI-IFSAR-2010-DTM-watana_extract.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
gdal_translate -b 4 /mnt/gis/scratch/dbroders/nrt_river_aerial/download/Chena_4_15_15v3.tif Chena_4_15_15v3.mask.tif | |
gdal_translate -co TILED=YES -co COMPRESS=DEFLATE -b 1 -b 2 -b 3 /mnt/gis/scratch/dbroders/nrt_river_aerial/download/Chena_4_15_15v3.tif Chena_4_15_15v3.rgb.tif | |
/home/dbroders/processing-utils/bin/masker Chena_4_15_15v3.rgb.tif Chena_4_15_15v3.mask.tif Chena_4_15_15v3.mask.rgb.tif | |
add_overviews.rb Chena_4_15_15v3.mask.rgb.tif | |
gdal_translate -co TILED=YES -co COMPRESS=JPEG -co COPY_SRC_OVERVIEWS=YES -co PHOTOMETRIC=YCBCR -co JPEG_QUALITY=90 Chena_4_15_15v3.mask.rgb.tif Chena_4_15_15v3-jpg.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
See the picture and more details about this on my Google+ post over at: | |
https://plus.google.com/+DayneBroderson/posts/V21SUJhgEGB | |
The real room is a width 21' 5 3/4''. | |
Download and extract latest OSX build - built by Melo
I set up two Rift compatible builds set just outside of Lower Russian Lake. One build is x64 bit and the other was called universal in the build settings. - Melo
mkdir SimSalmon-2015.02
cd SimSalmon-2015.02
wget https://www.northwestknowledge.net/miles/VTLBuildShare/Lower%20Russian%20Demo%20Mac%20Builds.7z
7z e Lower\ Russian\ Demo\ Mac\ Builds.7z
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
# future | |
if workstation.broken? then call_for_help | |
# current -- simplified version - just think if we checked and wrote | |
# out workflow based on the user.workstation type: windows, linux, osx, other | |
if user.workstation.broken? | |
if user.institute = GI | |
then call_for_help("crc") | |
else |
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
syntax on | |
set softtabstop=2 | |
set shiftwidth=2 | |
set tabstop=2 | |
set expandtab | |
set background=dark | |
set t_Co=256 " 256 colors | |
"show the line numbers on the side. allow for lots of lines" |