group_id | site_code | variable_name | units | start_time | end_time |
---|---|---|---|---|---|
4 | 44043 | grid_longitude | 2007-04-25 16:00:00-04 | 9999-12-30 19:00:00-05 | |
4 | 44043 | wind_from_direction | 2007-04-25 16:00:00-04 | 9999-12-30 19:00:00-05 | |
4 | 44043 | grid_latitude | 2007-04-25 16:00:00-04 | 9999-12-30 19:00:00-05 | |
4 | 44043 | wind_speed_of_gust | m/s | 2007-04-25 16:00:00-04 | 9999-12-30 19:00:00-05 |
4 | 44043 | relative_humidity | % | 2007-04-25 16:00:00-04 | 9999-12-30 19:00:00-05 |
4 | 44043 | air_temperatu |
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
-- summary | |
SELECT | |
s.site_code, | |
s.description, | |
vg.group_name, | |
v.actual_name, | |
u.netcdf, | |
svo.last_update_ts, | |
svo.min_observation_ts, | |
svo.max_observation_ts, |
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 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
#! /bin/sh | |
# ================================================================== | |
# ______ __ _____ | |
# /_ __/___ ____ ___ _________ _/ /_ /__ / | |
# / / / __ \/ __ `__ \/ ___/ __ `/ __/ / / | |
# / / / /_/ / / / / / / /__/ /_/ / /_ / / | |
#/_/ \____/_/ /_/ /_/\___/\__,_/\__/ /_/ | |
# Multi-instance Apache Tomcat installation with a focus | |
# on best-practices as defined by Apache, SpringSource, and MuleSoft |
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
netcdf examine { | |
dimensions: | |
time = 66 ; | |
variables: | |
int crs ; | |
crs:grid_mapping_name = "latitude_longitude" ; | |
crs:epsg_code = "EPSG:4326" ; | |
crs:semi_major_axis = 6378137.f ; | |
crs:inverse_flattening = 298.2572f ; | |
int platform ; |
- Every builtin function: Python Builtins for 2.7
- Object Oriented Programming:
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
#!/usr/bin/env python | |
''' | |
build_agg.py | |
Builds the catalog for the CBIBS Stations | |
''' | |
import sys | |
from jinja2 import Template | |
import os |
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
#!/bin/bash | |
set -x | |
OTPS_URL=ftp://ftp.oce.orst.edu/dist/tides/OTPS.tar.Z | |
TPXO_URL=ftp://ftp.oce.orst.edu/dist/tides/Global/tpxo.tar.Z | |
MODEL_RUN_URL=https://gist.githubusercontent.com/lukecampbell/832fd094d875e60a02c4/raw/eb86dfa1c7c0921fbb47236919592649235dba8b/model_run.py | |
wget $OTPS_URL | |
zcat OTPS.tar.Z | tar -xv | |
cd OTPS | |
make |
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
diff --git a/migrations/2015-04-17-metadata.py b/migrations/2015-04-17-metadata.py | |
new file mode 100644 | |
index 0000000..622dfac | |
--- /dev/null | |
+++ b/migrations/2015-04-17-metadata.py | |
@@ -0,0 +1,32 @@ | |
+#!/usr/bin/env python | |
+''' | |
+migrations/2015-04-17-metadata.py | |
+ |
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
TOCView -> | |
subviews : [] | |
stationCollection, | |
categoryCollection | |
add: function(subview) { // CategoryItemView | |
subview.render(); // --> <li> {{ name }} <ul></ul> </li> | |
this.subviews.push(subview); | |
this.$el.find('ul').append(subview.el); |