https://labs.waterdata.usgs.gov/sta/v1.1/Locations?$filter=properties/mainstemURL%20eq%20%27https://geoconnex.us/ref/mainstems/29559%27&$expand=Things($select=id)/Datastreams($filter=properties/ParameterCode%20eq%20%2700065%27)/Observations($top=1)&$resultFormat=GeoJSON"
This file contains hidden or 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
| <gml:FeatureCollection | |
| xmlns:gml="http://www.opengis.net/gml/3.2" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xmlns:wml2="http://www.opengis.net/waterml/2.0" | |
| xmlns:xlink="http://www.w3.org/1999/xlink" | |
| xmlns:om="http://www.opengis.net/om/2.0" | |
| xmlns:sa="http://www.opengis.net/sampling/2.0" | |
| xmlns:sams="http://www.opengis.net/samplingSpatial/2.0" | |
| xmlns:swe="http://www.opengis.net/swe/2.0" gml:id="USGS.waterservices" xsi:schemaLocation="http://www.opengis.net/waterml/2.0 http://schemas.opengis.net/waterml/2.0/waterml2.xsd"> | |
| <gml:featureMember> |
This file contains hidden or 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
| library(sf) | |
| library(mapview) | |
| # read identifiers for Colorado River and Colorado River (TX) into simple features | |
| colorado_river <- sf::read_sf("https://geoconnex.us/ref/mainstems/29559") | |
| colorado_river_tx <- sf::read_sf("https://geoconnex.us/ref/mainstems/2639515") | |
| ## Function that constructs query to retrive the latest discharge observation from the USGS |
This file contains hidden or 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
| ##packages used | |
| require(sf) | |
| require(SPARQL) | |
| # remotes::install_github("cran/SPARQL") this is archived by cran grrrr | |
| require(mapview) | |
| require(dplyr) | |
| library(stringi) | |
| # start gage | |
| gage_uri <- "https://geoconnex.us/ref/gages/1118104" |
This file contains hidden or 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
| { | |
| "@context": [{ | |
| "schema": "http://schema.org/", | |
| "skos": "https://www.w3.org/TR/skos-reference/", | |
| "sosa": "http://www.w3.org/ns/sosa/", | |
| "hyf": "https://www.opengis.net/def/schema/hy_features/hyf/", | |
| "gsp": "http://www.opengeospatial.org/standards/geosparql/", | |
| "name": "schema:name", | |
| "sameAs": "schema:sameAs", | |
| "related": "skos:related", |
This file contains hidden or 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
| r.boerne-water-dashboard.internetofwater.app { | |
| reverse_proxy rstudio:8787 | |
| } | |
| boerne-water-dashboard.internetofwater.app { | |
| root * /srv | |
| file_server | |
| } |
This file contains hidden or 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
| version: '3.4' | |
| services: | |
| caddy: | |
| image: caddy:2.4.6-alpine | |
| container_name: webserver | |
| ports: | |
| - 80:80 | |
| - 443:443 | |
| volumes: | |
| - ./nc-water-supply:/srv |
This file contains hidden or 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
| library(readr) | |
| library(dplyr) | |
| csv_directory <- "." | |
| output_directory <- "./results" | |
| filenames <- list.files(csv_directory,pattern="*.csv") | |
| all_files <- Reduce(bind_rows, lapply(filenames, read_csv, col_types = cols(.default = "c"))) |
This file contains hidden or 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
| version: '3.4' | |
| services: | |
| chill-import: | |
| image: fraunhoferiosb/chillimport:latest | |
| ports: | |
| - "8000:8000" | |
| environment: | |
| - configPath="/data" | |
| volumes: |