├── .github ├── ISSUE_TEMPLATE │ └── chapter-revision-request.md └── workflows │ └── publish.yml ├── .gitignore ├── README.md ├── _publish.yml ├── _quarto.yml ├── about.qmd ├── contributing.qmd ├── guide-domain-specific ├── ecocom.qmd ├── hymet.qmd ├── preface.qmd └── soil-carbon.qmd ├── guide-eml-bp ├── content-recommendations.qmd ├── introduction.qmd └── preface.qmd ├── guide-special-cases ├── code.qmd ├── images-and-docs.qmd ├── img │ └── guide-special-cases-model-fig1.png ├── introduction.qmd ├── large-offline.qmd ├── model-based.qmd ├── moving-platforms.qmd ├── other-repositories.qmd ├── preface.qmd └── spatial-data.qmd ├── img └── edi-logo.png ├── index.qmd ├── references.bib └── references.qmd /.github/ISSUE_TEMPLATE/chapter-revision-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/.github/ISSUE_TEMPLATE/chapter-revision-request.md -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/README.md -------------------------------------------------------------------------------- /_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/_publish.yml -------------------------------------------------------------------------------- /_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/_quarto.yml -------------------------------------------------------------------------------- /about.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/about.qmd -------------------------------------------------------------------------------- /contributing.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/contributing.qmd -------------------------------------------------------------------------------- /guide-domain-specific/ecocom.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/guide-domain-specific/ecocom.qmd -------------------------------------------------------------------------------- /guide-domain-specific/hymet.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/guide-domain-specific/hymet.qmd -------------------------------------------------------------------------------- /guide-domain-specific/preface.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/guide-domain-specific/preface.qmd -------------------------------------------------------------------------------- /guide-domain-specific/soil-carbon.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/guide-domain-specific/soil-carbon.qmd -------------------------------------------------------------------------------- /guide-eml-bp/content-recommendations.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/guide-eml-bp/content-recommendations.qmd -------------------------------------------------------------------------------- /guide-eml-bp/introduction.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/guide-eml-bp/introduction.qmd -------------------------------------------------------------------------------- /guide-eml-bp/preface.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/guide-eml-bp/preface.qmd -------------------------------------------------------------------------------- /guide-special-cases/code.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/guide-special-cases/code.qmd -------------------------------------------------------------------------------- /guide-special-cases/images-and-docs.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/guide-special-cases/images-and-docs.qmd -------------------------------------------------------------------------------- /guide-special-cases/img/guide-special-cases-model-fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/guide-special-cases/img/guide-special-cases-model-fig1.png -------------------------------------------------------------------------------- /guide-special-cases/introduction.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/guide-special-cases/introduction.qmd -------------------------------------------------------------------------------- /guide-special-cases/large-offline.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/guide-special-cases/large-offline.qmd -------------------------------------------------------------------------------- /guide-special-cases/model-based.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/guide-special-cases/model-based.qmd -------------------------------------------------------------------------------- /guide-special-cases/moving-platforms.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/guide-special-cases/moving-platforms.qmd -------------------------------------------------------------------------------- /guide-special-cases/other-repositories.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/guide-special-cases/other-repositories.qmd -------------------------------------------------------------------------------- /guide-special-cases/preface.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/guide-special-cases/preface.qmd -------------------------------------------------------------------------------- /guide-special-cases/spatial-data.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/guide-special-cases/spatial-data.qmd -------------------------------------------------------------------------------- /img/edi-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/img/edi-logo.png -------------------------------------------------------------------------------- /index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/index.qmd -------------------------------------------------------------------------------- /references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/references.bib -------------------------------------------------------------------------------- /references.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EDIorg/data-package-best-practices/HEAD/references.qmd --------------------------------------------------------------------------------