Skip to content

Commit c15eea0

Browse files
committed
load one year by default
1 parent f679515 commit c15eea0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tutorials/parquet-catalog-demos/neowise-source-table-lightcurves.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ For example, a cone search radius of 1 arcsec will require about 10 CPUs, 65G RA
6060
50 minutes to load the data from all 10 NEOWISE years.
6161
Increasing the radius to 10 arcsec will return about 2.5x more rows using roughly the same resources.
6262
Increasing the target sample size can result in similar efficiency gains.
63-
To try out this notebook with fewer resources, use a subset of NEOWISE years.
64-
Using one year is expected to require about 5 CPUs, 20G RAM, and 10 minutes.
63+
For ease of use, the default in this notebook is to load only one NEOWISE year, which is
64+
expected to require about 5 CPUs, 20G RAM, and 10 minutes.
6565
These estimates are based on testing in science platform environments.
6666
Your numbers will vary based on many factors including compute power, bandwidth, and physical distance from the data.
6767

@@ -104,11 +104,11 @@ Real use cases are likely to require all ten years but it can be helpful to star
104104
fewer while exploring to make things run faster.
105105

106106
```{code-cell} ipython3
107-
YEARS = list(range(1, 11)) # all years => about 11 CPU, 65G RAM, and 50 minutes runtime
107+
# Choose your own subset of years. By default, just year 10.
108+
YEARS = [10] # one year => about 5 CPU, 20G RAM, and 10 minutes runtime
108109
109-
# To try out a smaller version of the notebook,
110-
# uncomment the next line and choose your own subset of years.
111-
# YEARS = [10] # one year => about 5 CPU, 20G RAM, and 10 minutes runtime
110+
# Uncomment the next line to use the full dataset, years 1-10.
111+
# YEARS = list(range(1, 11)) # all years => about 11 CPU, 65G RAM, and 50 minutes runtime
112112
```
113113

114114
```{code-cell} ipython3

0 commit comments

Comments
 (0)