Skip to content

Commit 84fd39b

Browse files
authored
Merge pull request #8 from nsidc/reorganize-structure
Reorganize structure and files for main content
2 parents 5f82203 + 8a91fe9 commit 84fd39b

36 files changed

+105
-2707
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/.quarto/
22
_site/
3-
nsidc-data-cookbook/example_data/
3+
example_data/
44
*.h5
55
*.nc

_quarto.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ website:
2626
- text: "Welcome"
2727
href: index.qmd
2828
- text: "Our Cookbook"
29-
href: nsidc-data-cookbook/our-cookbook.qmd
29+
href: our-cookbook.qmd
3030
- text: "Tools we use"
3131
href: tools-we-use.qmd
3232
- text: "Data Structures - types of data"
@@ -36,23 +36,25 @@ website:
3636
- text: "Common NSIDC file formats"
3737
href: reference-guides/nsidc-file-formats.qmd
3838
- text: "NSIDC map projections and grids"
39-
href: nsidc-data-cookbook/reference-guides/projections.qmd
39+
href: reference-guides/projections.qmd
4040
- text: "Plotting NSIDC Data"
41-
href: nsidc-data-cookbook/reference-guides/plotting-data.qmd
41+
href: reference-guides/plotting-data.qmd
4242
- text: "Datasets"
43-
href: nsidc-data-cookbook/reference-guides/datasets.qmd
43+
href: reference-guides/datasets.qmd
4444
- text: "What is an API?"
4545
- text: "NASA collections and granules"
4646
- section: "How do I..."
47-
href: nsidc-data-cookbook/how-to-guides/overview.qmd
47+
href: how-to-guides/overview.qmd
4848
contents:
49-
- section: "reproject data?"
50-
- section: "work with NetCDF files?"
49+
- section: "Search for data"
50+
- section: "Access data"
51+
- section: "Reproject data"
52+
- section: "Work with NetCDF files?"
5153
contents:
5254
- text: "get the bounding box of a netcdf file"
53-
href: nsidc-data-cookbook/how-to-guides/netcdf_cf.qmd
55+
href: how-to-guides/netcdf_cf.qmd
5456
- text: "get the latitude and longitudes for grid cells"
55-
href: nsidc-data-cookbook/how-to-guides/get_latitude_and_longitude.qmd
57+
href: how-to-guides/get_latitude_and_longitude.qmd
5658

5759
format:
5860
html:
File renamed without changes.

nsidc-data-cookbook/how-to-guides/overview.qmd renamed to how-to-guides/overview.qmd

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,18 @@ solve a particular problem or task. You can think of these How-To
1010
Guides as recipes. For the most part they are short. They are
1111
written with the assumption that you know what you want to do and have
1212
some understanding of programing. You can think of each How-To as a
13-
building block that can be put together with other How-To to construct
13+
building block that can be put together with other How-Tos to construct
1414
a workflow.
1515

1616
If you are just learning either programming or working in the cloud,
17-
we recommend looking at our [**Tutorials**](nsidc-data-cookbook/tutorials/index.qmd).
18-
If you are looking for inspiration or examples of workflows
19-
applied to particular problems look at the collection of [**Example
20-
Workflows**](../examples/index.qmd).
17+
we recommend looking at the other chapters in this cookbook.
2118

2219
How-To Guides are organized into the following sections:
2320
_Maybe add a short description of each section here_
2421

25-
- Searching for data;
26-
- Accessing data;
27-
- Reprojecting and resampling data;
28-
- Working with CF-compliant NetCDF files
22+
- How do I search for data;
23+
- How do I accessing data;
24+
- How do I reproject and resample data;
25+
- How do I work with CF-compliant NetCDF files
2926
- [How do I get the bounding box of a NetCDF file in latitude and longitude?](netcdf_cf.qmd)
3027

0 commit comments

Comments
 (0)