Skip to content

Commit d10c96c

Browse files
Merge branch 'main' into copilot/fix-64
2 parents 87552ef + 6a1e499 commit d10c96c

File tree

4 files changed

+101
-19
lines changed

4 files changed

+101
-19
lines changed

.gitignore

Lines changed: 92 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,93 @@
1-
# Ignore files that are generated whenever a developer `pip install`s this package
2-
# from a local clone of this repository (e.g. `pip install /path/to/bertron-schema`),
3-
# rather than via its Git URL or—once it gets published to PyPI—via PyPI.
4-
/src/*.egg-info/
5-
/build/
6-
7-
# Ignore files that are generated when running `pytest` via `$ make test-python`.
1+
# Byte-compiled / optimized / DLL files
82
__pycache__/
3+
*.py[codz]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
share/python-wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
MANIFEST
28+
29+
# PyInstaller
30+
# Usually these files are written by a python script from a template
31+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32+
*.manifest
33+
*.spec
34+
35+
# Installer logs
36+
pip-log.txt
37+
pip-delete-this-directory.txt
38+
39+
# Unit test / coverage reports
40+
htmlcov/
41+
.tox/
42+
.nox/
43+
.coverage
44+
.coverage.*
45+
.cache
46+
nosetests.xml
47+
coverage.xml
48+
*.cover
49+
*.py.cover
50+
.hypothesis/
51+
.pytest_cache/
52+
cover/
53+
54+
# Sphinx documentation
55+
docs/_build/
56+
57+
# Jupyter Notebook
58+
.ipynb_checkpoints
59+
60+
# IPython
61+
profile_default/
62+
ipython_config.py
63+
64+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
65+
__pypackages__/
66+
67+
# Environments
68+
.env
69+
.envrc
70+
.venv
71+
env/
72+
venv/
73+
ENV/
74+
env.bak/
75+
venv.bak/
76+
77+
# mypy
78+
.mypy_cache/
79+
.dmypy.json
80+
dmypy.json
81+
82+
# Pyre type checker
83+
.pyre/
84+
85+
# pytype static type analyzer
86+
.pytype/
87+
88+
89+
# Ruff stuff:
90+
.ruff_cache/
91+
92+
# PyPI configuration file
93+
.pypirc

src/sample_data/valid/Entity-ess-dive-example-00001.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@ coordinates:
33
latitude: 65.162309
44
longitude: -164.819851
55
entity_type:
6-
- unspecified
7-
description: Maps of land surface phenology derived from PlanetScope data,
6+
- site
7+
name: Maps of land surface phenology derived from PlanetScope data,
88
2018-2022, Teller, Kougarok, and Council, Seward Peninsula
99
id: doi:10.15485/2441497
10-
name: NGEE Arctic Kougarok Site, Mile Marker 64, Alaska
10+
description: NGEE Arctic Kougarok Site, Mile Marker 64, Alaska
1111
alt_ids:
1212
- NGA547
13-
part_of_collection: []
1413
uri: https://data.ess-dive.lbl.gov/view/doi:10.15485/2441497

src/sample_data/valid/Entity-ess-dive-example-00002.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@ coordinates:
33
latitude: 64.735492
44
longitude: -165.95039
55
entity_type:
6-
- unspecified
7-
description: Maps of land surface phenology derived from PlanetScope data,
6+
- site
7+
name: Maps of land surface phenology derived from PlanetScope data,
88
2018-2022, Teller, Kougarok, and Council, Seward Peninsula
99
id: doi:10.15485/2441497
10-
name: NGEE Arctic Teller Site, Mile Marker 27, Alaska
10+
description: NGEE Arctic Teller Site, Mile Marker 27, Alaska
1111
alt_ids:
1212
- NGA547
13-
part_of_collection: []
1413
uri: https://data.ess-dive.lbl.gov/view/doi:10.15485/2441497

src/sample_data/valid/Entity-ess-dive-example-00003.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@ coordinates:
33
latitude: 64.847286
44
longitude: -163.71993600000002
55
entity_type:
6-
- unspecified
7-
description: Maps of land surface phenology derived from PlanetScope data,
6+
- site
7+
name: Maps of land surface phenology derived from PlanetScope data,
88
2018-2022, Teller, Kougarok, and Council, Seward Peninsula
99
id: doi:10.15485/2441497
10-
name: NGEE Arctic Council Site, Mile Marker 71, Alaska
10+
description: NGEE Arctic Council Site, Mile Marker 71, Alaska
1111
alt_ids:
1212
- NGA547
13-
part_of_collection: []
1413
uri: https://data.ess-dive.lbl.gov/view/doi:10.15485/2441497

0 commit comments

Comments
 (0)