• skip to content

CLAWRIM Wiki

The Computational Lab for Advanced Water Resources Informatics and Modeling

User Tools

  • Log In

Site Tools

  • Recent Changes
  • Media Manager
  • Sitemap
You are here: start ยป at
Trace:

at

Search

You can find the results of your search below.

Contains
  • Exact match
  • Starts with
  • Ends with
  • Contains
@howtos
  • Any namespace
Any time
  • Any time
  • Past week
  • Past month
  • Past year
Sort by hits
  • Sort by hits
  • Sort by last modified

Matching pagenames:

  • how_to_convert_latex_to_qmd
  • how_to_create_an_r_package
  • how_to_download_features_using_the_arcgis_rest_api

Fulltext results:

how_to_install_tex_live_on_linux
41 Hits, Last modified: 2 months ago
] by default. However, extra packages and documentation require root permissions to install (''texlive... ''texlive-docs''), and they are not a full installation. This HOWTO explains how to install TeX Live as a non-root user. ===== Shared non-root installation ===== The initial installation size for this method is larger (~9.6GB), but it can save disk stor
how_to_compile_peakfq_on_linux
26 Hits, Last modified: 18 months ago
incomplete source code of PeakFQ from [[https://water.usgs.gov/software/PeakFQ/|its website]]. Here, I'll use [[https://water.usgs.gov/software/PeakFQ/code/7.5.1/PeakFQ_7.5.... > #!/bin/sh # download source code wget https://water.usgs.gov/software/PeakFQ/code/7.5.1/PeakFQ_7.5.... pc90.for # comment out non-existent modules and data types sed -Ei 's/^(.*(KERNEL32|T_OVERLAPPED))/!\
how_to_compile_grass_on_slackware
17 Hits, Last modified: 5 weeks ago
ackware. <code bash> # switch to root su - # create postgres group and user for postgresql, one of p... raries; # build queuefiles, not packages, to automatically build any other dependencies sbopkg -k -i "... one https://github.com/OSGeo/gdal-grass.git # create ~/.grassbuildrc cd grass-build-scripts cp .grass... l/share/pkgconfig/grass.pc if ! echo $PKG_CONFIG_PATH | grep -q $HOME/usr/local/share/pkgconfig; then
how_to_download_features_using_the_arcgis_rest_api
15 Hits, Last modified: 18 months ago
====== How to download features using the ArcGIS REST API ====== This script requires [[https://jqlan... ub.io/jq/|jq]]. <file bash download_arcgis_rest_features.sh> #!/bin/sh if [ $# -lt 2 ]; then echo "Usage: download_arcgis_rest_features.sh REST_URL output" exit fi # URL for an Ar... &geometryType=esriGeometryEnvelope # &inSR= # &spatialRel=esriSpatialRelIntersects # &distance= # &un
how_to_install_micromamba
13 Hits, Last modified: 3 weeks ago
nv \ BIN_FOLDER="$HOME/local/bin" \ PREFIX_LOCATION="$HOME/opt/micromamba" \ sh # create an alias echo "alias mm=micromamba" >> ~/.bashrc # source... ]] for autocompletion and advanced command-line features. See [[how to install Clink on Windows]]. <code batch> rem install micromamba mkdir %USERPROFILE%\loc
how_to_install_the_intel_fortran_compiler_on_linux
10 Hits, Last modified: 18 months ago
ts.html#fortran|their website]] and download the latest version. For this HOWTO, I used [[https://registrationcenter-download.intel.com/akdlm/IRC_NAS/5e7b0f1... ash> # download the installer wget https://registrationcenter-download.intel.com/akdlm/IRC_NAS/5e7b0f1... /opt/oneapi rm -rf ~/intel /tmp/$(whoami) # add path cat << 'EOT' >> ~/.bash_profile # Intel Fortran
how_to_compile_modflow_6_on_slackware
9 Hits, Last modified: 12 months ago
Portable, Extensible Toolkit for Scientific Computation]] (PETSc). This HOWTO explains how to compile ... enBLAS; # build queuefiles, not packages, to automatically build any other dependencies sbopkg -k -i "... sr/local/share/pkgconfig cp -a builddir/meson-private/test-drive.pc ~/usr/local/share/pkgconfig if ! echo $PKG_CONFIG_PATH | grep -q $HOME/usr/local/share/pkgconfig; then
how_to_compile_qgis_on_slackware
7 Hits, Last modified: 5 weeks ago
ername who installed GRASS if ! echo $PKG_CONFIG_PATH | grep -q /home/USERNAME/usr/local/share/pkgconfig; then echo 'export PKG_CONFIG_PATH="$HOME/usr/local/share/pkgconfig:$PKG_CONFIG_PATH"' > ~/.bash_profile . ~/.bash_profile fi echo 'export LD_LIBRARY_PATH="$HOME/usr/local/src/grass/dist.x86_64-pc-linux-
how_to_convert_latex_to_qmd
7 Hits, Last modified: 4 weeks ago
====== How to convert LaTeX to QMD ====== <code bash> # convert tex to tempory qmd pandoc main.tex --to=markdown+tex_math_dollars+raw_tex --wrap=none -o main.tmp # extract citations grep -oE '@\{[^}]+\}|@[A-Za-z0-9_:/.-]+' main.tmp | sed 's/[@{}]//g; s/^/\\citation{/; s/$/}/' | sort -u > refs.keys # extract
how_to_install_hec-ras_on_linux
6 Hits, Last modified: 19 months ago
riables for HEC-RAS. Don't type it; copy-paste ''cat << 'EOT'...EOT'' into the terminal. <code bash> cat << 'EOT' >> ~/.bash_profile # HEC-RAS export PATH="$HOME/usr/local/opt/hecras/bin:$PATH" export LD_LIBRARY_PATH="$HOME/usr/local/opt/hecras/lib:$HOME/
how_to_create_an_r_package
4 Hits, Last modified: 4 weeks ago
====== How to create an R package ====== <code rsplus> # install devtools install.packages("devtools") # create a template in package/ usethis::create_package("package") </code>
how_to_install_clink_on_windows
4 Hits, Last modified: 8 weeks ago
e editing utility for Windows. - Download the latest ZIP file from https://github.com/chrisant996/c... \opt\clink. - Start ''cmd.exe'' and run: <code batch> C:\opt\clink\clink_x64.exe autorun install echo @echo off>%LOCALAPPDATA%\clink\clink_start.cmd </code> Now, whenever ''cmd.exe'' starts, Clink is invoked automatically.
how_to_install_miniconda_on_linux
3 Hits, Last modified: 3 weeks ago
t https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh chmod a+x Miniconda3-latest-Linux-x86_64.sh ./Miniconda3-latest-Linux-x86_64.sh -b -u -p ~/opt/miniconda3 ~/opt/miniconda3/bin
how_to_merge_csv_files_in_the_current_directory
2 Hits, Last modified: 20 months ago
assign it to i for i in *.csv; do # if you repeat this script, we don't want to merge # the previ... $first -eq 1 ]; then # print everything cat "$i" # subsequent files won't be first anymor
howtos
2 Hits, Last modified: 20 months ago
====== HOWTOs ====== <catlist -sortAscending -exclude:{c_template}>
how_to_use_shell_scripting_on_windows
1 Hits, Last modified: 20 months ago

Page Tools

  • Show page
  • Old revisions
  • Backlinks
  • Back to top
Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki