<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://clawiki.isnew.info/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://clawiki.isnew.info/feed.php">
        <title>CLAWRIM Wiki</title>
        <description>The Computational Lab for Advanced Water Resources Informatics and Modeling</description>
        <link>https://clawiki.isnew.info/</link>
        <image rdf:resource="https://clawiki.isnew.info/_media/wiki/logo.png" />
       <dc:date>2026-04-21T23:46:41+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://clawiki.isnew.info/howtos/how_to_download_features_using_the_arcgis_rest_api?rev=1727184906&amp;do=diff"/>
                <rdf:li rdf:resource="https://clawiki.isnew.info/howtos/how_to_merge_csv_files_in_the_current_directory?rev=1721577054&amp;do=diff"/>
                <rdf:li rdf:resource="https://clawiki.isnew.info/howtos/how_to_install_hec-ras_on_linux?rev=1775716535&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://clawiki.isnew.info/_media/wiki/logo.png">
        <title>CLAWRIM Wiki</title>
        <link>https://clawiki.isnew.info/</link>
        <url>https://clawiki.isnew.info/_media/wiki/logo.png</url>
    </image>
    <item rdf:about="https://clawiki.isnew.info/howtos/how_to_download_features_using_the_arcgis_rest_api?rev=1727184906&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-09-24T13:35:06+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>How to download features using the ArcGIS REST API</title>
        <link>https://clawiki.isnew.info/howtos/how_to_download_features_using_the_arcgis_rest_api?rev=1727184906&amp;do=diff</link>
        <description>How to download features using the ArcGIS REST API

This script requires jq.


#!/bin/sh

if [ $# -lt 2 ]; then
	echo &quot;Usage: download_arcgis_rest_features.sh REST_URL output&quot;
	exit
fi

# URL for an ArcGIS REST API
rest_url=$1

# output filename
output=$2

# prefix
prefix=$(echo $output | sed &#039;s/\..*//&#039;)

# starting record offset
offset=0
# max record count
count=2000

url=&quot;$rest_url/query&quot;

# required parameters
url=&quot;$url?f=geojson&quot;
url=&quot;$url&amp;where=1%3D1&quot;
url=&quot;$url&amp;outFields=*&quot;
url=&quot;$url&amp;result…</description>
    </item>
    <item rdf:about="https://clawiki.isnew.info/howtos/how_to_merge_csv_files_in_the_current_directory?rev=1721577054&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-07-21T15:50:54+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>How to merge CSV files in the current directory</title>
        <link>https://clawiki.isnew.info/howtos/how_to_merge_csv_files_in_the_current_directory?rev=1721577054&amp;do=diff</link>
        <description>How to merge CSV files in the current directory


# set a variable to know if a file is the first one
# because we don&#039;t want to skip the head line from the first file
first=1
# for each of *.csv file names, assign it to i
for i in *.csv; do
  # if you repeat this script, we don&#039;t want to merge
  # the previously merged file again
  if [ &quot;$i&quot; = &quot;merged.csv&quot; ]; then
    # skip this file
    continue
  fi
  # if this file is first
  if [ $first -eq 1 ]; then
    # print everything
    cat &quot;$i&quot;
   …</description>
    </item>
    <item rdf:about="https://clawiki.isnew.info/howtos/how_to_install_hec-ras_on_linux?rev=1775716535&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-09T06:35:35+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>How to install HEC-RAS on Linux</title>
        <link>https://clawiki.isnew.info/howtos/how_to_install_hec-ras_on_linux?rev=1775716535&amp;do=diff</link>
        <description>How to install HEC-RAS on Linux

Login to the Linux machine. In this example, we use NMSU&#039;s Discovery node discovery-l2:


# connect to the NMSU network using either Wi-Fi or VPN
ssh NMSU_username@discovery-l2
# type your NMSU password


Download the</description>
    </item>
</rdf:RDF>
