Skip to content

Commit acfb808

Browse files
committed
Initial commit
1 parent 14ee94a commit acfb808

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+2626
-0
lines changed

.editorconfig

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
;
2+
; Global Editor Config for Adaptive Labbers
3+
;
4+
; This is an ini style configuration. See http://editorconfig.org/ for more information on this file.
5+
;
6+
; Top level editor config.
7+
root = true
8+
9+
; Always use Unix style new lines with new line ending on every file and trim whitespace
10+
[*]
11+
charset = utf-8 # added
12+
end_of_line = lf
13+
insert_final_newline = true
14+
trim_trailing_whitespace = true
15+
; Python: PEP8 defines 4 spaces for indentation
16+
[*.py]
17+
indent_style = space
18+
indent_size = 4
19+
; Salt state files, YAML format, 2 spaces
20+
[*.sls, *.yaml, *.yml]
21+
indent_style = space
22+
indent_size = 2

.gitattributes

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Set default behaviour, in case users don't have core.autocrlf set.
2+
* text=auto
3+
# Explicitly declare text files we want to always be normalized and converted
4+
# to native line endings on checkout.
5+
*.md text diff=markdown
6+
*.json.br filter=lfs diff=lfs merge=lfs -text

.github/CODEOWNERS.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @LarsvanVianen

.github/CODE_OF_CONDUCT.md

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
6+
7+
## Our Standards
8+
9+
Examples of behavior that contributes to creating a positive environment include:
10+
11+
- Using welcoming and inclusive language
12+
- Being respectful of differing viewpoints and experiences
13+
- Gracefully accepting constructive criticism
14+
- Focusing on what is best for the community
15+
- Showing empathy towards other community members
16+
17+
Examples of unacceptable behavior by participants include:
18+
19+
- The use of sexualized language or imagery and unwelcome sexual attention or advances
20+
- Trolling, insulting/derogatory comments, and personal or political attacks
21+
- Public or private harassment
22+
- Publishing others' private information, such as a physical or electronic address, without explicit permission
23+
- Other conduct which could reasonably be considered inappropriate in a professional setting
24+
25+
## Our Responsibilities
26+
27+
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
28+
29+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
30+
31+
## Scope
32+
33+
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
34+
35+
## Enforcement
36+
37+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [email protected]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
38+
39+
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
40+
41+
## Attribution
42+
43+
This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org/), version 1.4, available at <https://www.contributor-covenant.org/version/1/4/code-of-conduct/>

.github/CONTRIBUTING.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Contributing
2+
3+
When contributing to this repository, please first discuss the change you wish to make via issue,
4+
email, or any other method with the owners of this repository before making a change.
5+
6+
Please note we have a code of conduct, please follow it in all your interactions with the project.
7+
8+
## Pull Request Process
9+
10+
1. Always create a fork from the `main` branch.
11+
2. If needed, update the README.md with details of changes.
12+
3. Do not increase the version numbers in any files. The project owner(s) will take care of this.
13+
4. You may merge the Pull Request in once you have the sign-off of two other developers, or if you
14+
do not have permission to do that, you may request the second reviewer to merge it for you.

.github/FUNDING.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# These are supported funding model platforms
2+
github: geoid-org

.github/PULL_REQUEST_TEMPLATE.md

Whitespace-only changes.

.github/images/geoid-logo_light.png

921 KB
Loading

.github/workflows/deploy_docs.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: deploy_docs
2+
on:
3+
push:
4+
branches:
5+
- master
6+
- main
7+
permissions:
8+
contents: write
9+
jobs:
10+
deploy:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: actions/setup-python@v4
15+
with:
16+
python-version: 3.x
17+
- run: pip install mkdocs-material
18+
- run: pip install mkdocstrings
19+
- run: pip install mkdocstrings-python
20+
- run: mkdocs gh-deploy --force

.gitignore

+134
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
.sass-cache/
2+
*.css.map
3+
*.sass.map
4+
*.scss.map
5+
6+
7+
*.DS_Store
8+
9+
# Logs
10+
logs
11+
*.log
12+
npm-debug.log*
13+
yarn-debug.log*
14+
yarn-error.log*
15+
pnpm-debug.log*
16+
lerna-debug.log*
17+
18+
node_modules
19+
.DS_Store
20+
dist
21+
dist-ssr
22+
coverage
23+
*.local
24+
25+
/cypress/videos/
26+
/cypress/screenshots/
27+
28+
# Editor directories and files
29+
.vscode/*
30+
!.vscode/extensions.json
31+
.idea
32+
*.suo
33+
*.ntvs*
34+
*.njsproj
35+
*.sln
36+
*.sw?
37+
38+
39+
# Diagnostic reports (https://nodejs.org/api/report.html)
40+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
41+
42+
# Runtime data
43+
pids
44+
*.pid
45+
*.seed
46+
*.pid.lock
47+
48+
# Directory for instrumented libs generated by jscoverage/JSCover
49+
lib-cov
50+
51+
# Coverage directory used by tools like istanbul
52+
coverage
53+
*.lcov
54+
55+
# nyc test coverage
56+
.nyc_output
57+
58+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
59+
.grunt
60+
61+
# Bower dependency directory (https://bower.io/)
62+
bower_components
63+
64+
# node-waf configuration
65+
.lock-wscript
66+
67+
# Compiled binary addons (https://nodejs.org/api/addons.html)
68+
build/Release
69+
70+
# Dependency directories
71+
node_modules/
72+
jspm_packages/
73+
74+
# TypeScript v1 declaration files
75+
typings/
76+
77+
# TypeScript cache
78+
*.tsbuildinfo
79+
80+
# Optional npm cache directory
81+
.npm
82+
83+
# Optional eslint cache
84+
.eslintcache
85+
86+
# Microbundle cache
87+
.rpt2_cache/
88+
.rts2_cache_cjs/
89+
.rts2_cache_es/
90+
.rts2_cache_umd/
91+
92+
# Optional REPL history
93+
.node_repl_history
94+
95+
# Output of 'npm pack'
96+
*.tgz
97+
98+
# Yarn Integrity file
99+
.yarn-integrity
100+
101+
# dotenv environment variables file
102+
.env
103+
.env.test
104+
105+
# parcel-bundler cache (https://parceljs.org/)
106+
.cache
107+
108+
# Next.js build output
109+
.next
110+
111+
# Nuxt.js build / generate output
112+
.nuxt
113+
dist
114+
115+
# Gatsby files
116+
.cache/
117+
# Comment in the public line in if your project uses Gatsby and *not* Next.js
118+
# https://nextjs.org/blog/next-9-1#public-directory-support
119+
# public
120+
121+
# vuepress build output
122+
.vuepress/dist
123+
124+
# Serverless directories
125+
.serverless/
126+
127+
# FuseBox cache
128+
.fusebox/
129+
130+
# DynamoDB Local files
131+
.dynamodb/
132+
133+
# TernJS port file
134+
.tern-port

CITATION.cff

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
cff-version: 1.2.0
2+
title: Earth Observer
3+
version: 0.0.1
4+
date-released: 2022-11-01
5+
url: "https://github.com/geoid-org/eart-observer"
6+
message: >-
7+
Earth Observer is a Spatial Data Directory maintained by Geoid.
8+
type: dataset
9+
authors:
10+
- given-names: Lars Bastiaan
11+
family-names: van Vianen
12+
13+
affiliation: Scape Agency
14+
orcid: 'https://orcid.org/0000-0002-8790-8630'

0 commit comments

Comments
 (0)