Skip to content

Commit 6ceced5

Browse files
committed
docs: correct messaging
1 parent 42736df commit 6ceced5

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
Every cold start re-parses satellite image metadata over HTTP - per
1919
scene, per band. Sentinel-2, Landsat, NAIP, every time. Your colleague
2020
did it last Tuesday, CI did it overnight, PyTorch respawns DataLoader
21-
workers every epoch. A single project racks up **millions of redundant
21+
workers every epoch. A single project repeats **millions of redundant
2222
requests** before a pixel moves.
2323

2424
Rasteret parses those headers **once**, caches them in Parquet, and its
@@ -94,7 +94,7 @@ Each entry includes license metadata sourced from the authoritative STAC API,
9494
and a `commercial_use` flag for quick filtering.
9595

9696
The catalog is open and community-driven. Each dataset entry is ~20 lines of
97-
Python: One PR adds a dataset; every user gets accelerated access on the next release.
97+
Python: One PR adds a dataset; every user gets access on the next release.
9898

9999
Pick any ID and pass it to `build()`. Don't see your dataset? Use
100100
`build_from_stac()` for any STAC API, `build_from_table()` for existing
@@ -251,13 +251,13 @@ Full docs at **[terrafloww.github.io/rasteret](https://terrafloww.github.io/rast
251251

252252
## Contributing
253253

254-
The catalog grows fastest with community help:
254+
The catalog grows with community help:
255255

256256
- **Add a dataset**: write a ~20 line descriptor in `catalog.py`, open a PR. See [prerequisites](https://terrafloww.github.io/rasteret/how-to/dataset-catalog/#prerequisites-for-contributing-a-built-in-dataset) and [guide](https://terrafloww.github.io/rasteret/how-to/dataset-catalog/#add-your-own-catalog-entries-advanced)
257257
- **Improve docs**: fix a typo, add an example, clarify a section
258258
- **Build something new**: ingest drivers, cloud backends, readers. See [Architecture](https://terrafloww.github.io/rasteret/explanation/architecture/)
259259

260-
Every contribution benefits the whole community.
260+
All contributions are welcome.
261261
See [Contributing](https://terrafloww.github.io/rasteret/contributing/) for dev setup and we are happy to discuss all aspects of library.
262262
Ideas welcome on [GitHub Discussions](https://github.com/terrafloww/rasteret/discussions) or join our [Discord](https://discord.gg/V5vvuEBc) to just chat.
263263

docs/index.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
---
66

7-
!!! failure "The problem no one fixed"
7+
!!! failure "The cold-start tax"
88

99
Your colleague read those Sentinel-2 scenes last Tuesday. The tools
1010
re-parsed every file header over HTTP - per scene, per band. So did CI.
1111
So did the intern's notebook. PyTorch respawns DataLoader workers every
1212
epoch, so your own training run re-parses them hundreds of times over.
1313

14-
A single project racks up **millions of redundant requests** across a
14+
A single project repeats **millions of redundant requests** across a
1515
team - zero pixels delivered.
1616

1717
!!! success "What Rasteret does"
@@ -77,8 +77,7 @@ for d in rasteret.DatasetRegistry.list():
7777
```
7878

7979
The catalog is open and community-driven. Each entry is ~20 lines of Python.
80-
One PR adds a dataset and every user gets accelerated access on the next
81-
release. No proprietary APIs, no platform lock-in. See
80+
One PR adds a dataset and every user gets access on the next release. No proprietary APIs, no platform lock-in. See
8281
[Dataset Catalog](how-to/dataset-catalog.md) for details, or
8382
[Design Decisions](explanation/design-decisions.md) for the thinking behind it.
8483

@@ -196,7 +195,7 @@ For how Rasteret relates to other tools, see
196195
---
197196

198197
Add a dataset, improve docs, or build something new.
199-
Every contribution benefits the whole ecosystem.
198+
All contributions are welcome.
200199

201200
[:octicons-arrow-right-24: Contributing](contributing.md)
202201

0 commit comments

Comments
 (0)