Skip to content

Commit e138bd4

Browse files
Remove all under-construction banners (#646)
* Remove all under-construction banners * Wording and formatting fixes * Update core/datetime.md Co-authored-by: Katelyn FitzGerald <7872563+kafitzgerald@users.noreply.github.com> * Update core/data-formats.md Co-authored-by: Katelyn FitzGerald <7872563+kafitzgerald@users.noreply.github.com> --------- Co-authored-by: Katelyn FitzGerald <7872563+kafitzgerald@users.noreply.github.com>
1 parent 4f8a5f9 commit e138bd4

3 files changed

Lines changed: 7 additions & 18 deletions

File tree

core/data-formats.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
# Data Formats
22

3-
```{note}
4-
This content is under construction!
5-
```
6-
7-
There are many data file formats used commonly in the geosciences, such as NetCDF and GRIB. This section contains tutorials on how to interact with these files in Python.
3+
Geoscientific data are commonly stored in self-describing files that are readable on multiple computing platforms and programming languages (including Python). This section contains a tutorial on the widely-used netCDF data format.

core/datetime.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
# Datetime
22

3-
```{note}
4-
This content is under construction!
5-
```
3+
This section contains a basic tutorial on dealing with dates and times in scientific Python using a module from the Python standard library known as [datetime](https://docs.python.org/3/library/datetime.html).
64

7-
This section contains tutorials on dealing with times and calendars in scientific Python. The first and most basic of these tutorials covers the standard Python library known as [datetime](https://docs.python.org/3/library/datetime.html).
8-
9-
When this chapter is fully built out, it will include a comprehensive guide to different time libraries, where to use them, and when they might be useful. This set of time libraries includes these libraries, among others:
5+
Other time libraries used in the geosciences include:
106

117
- [Numpy `datetime64`](https://numpy.org/doc/stable/reference/arrays.datetime.html) (for efficient vectorized date and time operations)
128
- [cftime library](https://unidata.github.io/cftime/) (for dealing with dates and times in non-standard calendars)
139

14-
These tutorials will be cross-referenced with other tutorials on time-related topics, such as dealing with timeseries data in [Pandas](pandas.md) and [Xarray](xarray.md).
10+
The Python packages that are commonly used for timeseries data in the geosciences such as [Pandas](pandas.md) and [Xarray](xarray.md) leverage these libraries.

core/pandas.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
# Pandas
22

3-
```{note}
4-
This content is under construction!
5-
```
6-
7-
This section will contain tutorials on using [pandas](https://pandas.pydata.org) for labeled tabular data.
3+
This section contains tutorials on using [pandas](https://pandas.pydata.org) for labeled tabular data.
84

95
---
106

11-
From the [official documentation](https://pandas.pydata.org/), Pandas {cite:p}`reback2020pandas` "is a fast, powerful, flexible and easy to use open source data analysis and manipulation tool, built on top of the Python programming language."
7+
From the [official documentation](https://pandas.pydata.org/), Pandas {cite:p}`reback2020pandas` is
8+
> a fast, powerful, flexible and easy to use open source data analysis and manipulation tool, built on top of the Python programming language.
129
1310
Pandas is a very powerful library for working with tabular data (e.g., spreadsheets, comma-separated-value files, or database printouts; all of these are quite common for geoscientific data). It allows us to use labels for our data; this, in turn, allows us to write expressive and robust code to manipulate the data.
1411

0 commit comments

Comments
 (0)