Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add explanation of status_flag, quality_flag, other QC flag standard names to Chapter 3.4 #235

Closed
wants to merge 32 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
ab60a6b
coord value order for CRS WKT
marqh Jan 6, 2020
a611a83
editorial updates for clarity
marqh Jan 9, 2020
2a44ccc
2.3 must -> should
davidhassell Jan 13, 2020
c3fa6fd
Move to Requirements
davidhassell Jan 13, 2020
326fb91
updated for 1.8
davidhassell Jan 22, 2020
1deca80
links
davidhassell Jan 22, 2020
be3a06b
links
davidhassell Jan 22, 2020
15c0ff6
links
davidhassell Jan 22, 2020
20c0376
Add explaination of status_flag, quality_flag, others to 3.4
mwengren Dec 13, 2019
55a2dec
Improved wording of status and quality flag section and example (Ch 3.4)
mwengren Jan 23, 2020
d477ebb
Amend broken link (RE COARDS Conventions) in bibliography
sadielbartholomew Jan 23, 2020
0d5c0e6
Update usage of false_easting and false_northing in projections (#225)
Jan 28, 2020
f4b8831
Merge pull request #224 from marqh/axisOrderWKT
davidhassell Jan 30, 2020
d254254
issue 223
davidhassell Jan 30, 2020
c8b7237
issue 212
davidhassell Jan 30, 2020
dd26670
Merge pull request #234 from davidhassell/revision_history_1.8
davidhassell Feb 1, 2020
9d8e5e9
Merge pull request #227 from davidhassell/conformance_2.3
davidhassell Feb 8, 2020
f216525
Resolve Example 3.4 and 3.5 mis-ordering issue
mwengren Feb 8, 2020
aeb3561
Change the version string from "1.8 (draft)" to "1.8".
Feb 12, 2020
a976c0a
set version string to 1.9 (draft)
mo-marqh Feb 13, 2020
8eeed86
Merge pull request #245 from cf-convention/vs1.9draft
painter1 Feb 13, 2020
ff0fccd
Fix geostationary projection (#232)
erget Feb 20, 2020
cd0c11c
Check that PRs do not break Asciidoctor build
lesserwhirls Mar 18, 2020
1ad15c6
Merge pull request #251 from lesserwhirls/pr-build-check
ethanrd Mar 31, 2020
a9035df
Merge pull request #240 from mwengren/fix_chap_35_examples
JonathanGregory Apr 2, 2020
26e758f
Add new integer types in CF 2.2 Data Types (#243) (#244)
ethanrd Apr 16, 2020
c71d92f
add latest spec build info to READEME
dblodgett-usgs Apr 24, 2020
1b27d68
Merge pull request #236 from sadielbartholomew/master
dblodgett-usgs Apr 29, 2020
e4a7b2e
Add explaination of status_flag, quality_flag, others to 3.4
mwengren Dec 13, 2019
d8b3c39
Improved wording of status and quality flag section and example (Ch 3.4)
mwengren Jan 23, 2020
cc38d12
Add back flag_masks, flag_meanings paragraph
mwengren May 4, 2020
84d890a
Merge remote branch chap_34_update
mwengren May 4, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions .github/workflows/check_adoc_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
#
# GitHub Actions Workflow for pull request events against the master branch to
# make sure Asciidoctor still builds. If successful, the resulting html and
# pdf files are uploaded as artifacts to make it easier to preview the results
# of a PR.
#
# For more information on the actions used in this workflow, please see:
# https://github.com/actions/checkout
# https://github.com/Analog-inc/asciidoctor-action
# https://github.com/actions/upload-artifact
#
name: Check Asciidoctor Build
on:
pull_request:
branches: [ master ]

jobs:
# Job to build cf-conventions.html, cf-conventions.pdf
build_conventions:
name: Build cf-conventions html and pdf
runs-on: ubuntu-latest
steps:
# Check out PR
- uses: actions/checkout@v2
# Create build directory
- run: mkdir conventions_build
# Build cf-conventions.html using the Analog-inc asciidoctor-action
- name: Build cf-conventions.html
uses: Analog-inc/[email protected]
with:
shellcommand: 'asciidoctor --verbose cf-conventions.adoc -D conventions_build'
# Build cf-conventions.pdf using the Analog-inc asciidoctor-action
- name: Build cf-conventions.pdf
uses: Analog-inc/[email protected]
with:
shellcommand: 'asciidoctor-pdf --verbose -d book cf-conventions.adoc -D conventions_build'
# Upload artifact containing cf-conventions.html, cf-conventions.pdf
- name: Upload cf-conventions doc preview
uses: actions/upload-artifact@v1
with:
name: conventions docs
path: conventions_build/

# Job to build conformance.html, conformance.pdf
build_conformance:
name: Build conformance html and pdf
runs-on: ubuntu-latest
steps:
# Checkout PR
- uses: actions/checkout@v2
# Create build directory
- run: mkdir conformance_build
# Build conformance.html using the Analog-inc asciidoctor-action
- name: Build conformance.html
uses: Analog-inc/[email protected]
with:
shellcommand: 'asciidoctor --verbose conformance.adoc -D conformance_build'
# Build conformance.pdf using the Analog-inc asciidoctor-action
- name: Build conformance.pdf
uses: Analog-inc/[email protected]
with:
shellcommand: 'asciidoctor-pdf --verbose -d book conformance.adoc -D conformance_build'
# Upload artifact containing conformance.html, conformance.pdf
- name: Upload conformance doc preview
uses: actions/upload-artifact@v1
with:
name: conformance docs
path: conformance_build/
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,13 @@ To convert the AsciiDoc files into the resulting HTML file:
4. Build the HTML: `asciidoctor cf-conventions.adoc`

See the [GitHub help](https://help.github.com/) pages and plethora of other git/GitHub guides for more details on how to work with repos, forks, pull requests, etc.

### Latest Spec Build

Whenever a [pull request](https://github.com/cf-convention/cf-conventions/pulls) is merged, a [travis-ci build](https://travis-ci.org/github/cf-convention/cf-conventions) generates the latest specification draft and adds it to the [gh-pages branch here](https://github.com/cf-convention/cf-conventions/tree/gh-pages). The gh-pages branch is deployed to github pages at the following documents:
- http://cfconventions.org/cf-conventions/cf-conventions.html
- http://cfconventions.org/cf-conventions/cf-conventions.pdf
- http://cfconventions.org/cf-conventions/conformance.html
- http://cfconventions.org/cf-conventions/conformance.pdf

These documents are linked in the cf-conventions web site. [source here](https://github.com/cf-convention/cf-convention.github.io) which is published to: http://cfconventions.org/. The latest spec documents are linked from those web pages here: http://cfconventions.org/latest.html.
Loading