Skip to content

Commit a125558

Browse files
committed
add feedback forms to aws open data docs resolves #3
1 parent 45fae46 commit a125558

File tree

4 files changed

+20
-1
lines changed

4 files changed

+20
-1
lines changed

src/content/docs/aws/about.mdx

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
title: About Open Data on AWS
33
---
44

5+
import FeedbackForm from '../../../components/FeedbackForm.astro';
6+
7+
58
## Bucket structure
69

710
The bucket root url is
@@ -119,3 +122,5 @@ To learn more about how to subscribe to SNS topics, view the
119122
Files are written 72 hours after the end of day, i.e. 0:00 for the given
120123
location's timezone. Files may be retroactively patched if data are missing due
121124
to fetching error or from historical data scrape.
125+
126+
<FeedbackForm />

src/content/docs/aws/athena-guide.mdx

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
title: Guide - Querying with AWS Athena
33
---
44

5+
import FeedbackForm from '../../../components/FeedbackForm.astro';
6+
57
import { Aside } from '@astrojs/starlight/components';
68

79
AWS Athena provides a powerful SQL interface to query data from the OpenAQ
@@ -103,3 +105,5 @@ measurements for December 2022 in this following form:
103105
"pm10","12.0","2022-12-12 15:00:00.000 -07:00"
104106
...
105107
```
108+
109+
<FeedbackForm />

src/content/docs/aws/quick-start.mdx

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
title: Quick start
33
---
44

5+
import FeedbackForm from '../../../components/FeedbackForm.astro';
6+
57
import { Aside, Steps } from '@astrojs/starlight/components';
68

79
This guide shows how to fetch data from the OpenAQ API. As an example, we will
@@ -57,4 +59,6 @@ file with the following command.
5759
data/records/csv.gz/locationid=2178/year=2022/month=05/location-2178-20220503.csv.gz
5860
```
5961

60-
</Steps>
62+
</Steps>
63+
64+
<FeedbackForm />

src/content/docs/aws/year-guide.mdx

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
title: Guide - Download a year of data for a location.
33
---
44

5+
import FeedbackForm from '../../../components/FeedbackForm.astro';
6+
7+
58
This guide shows you how to download a relatively large amount of measurement
69
data, one year of hourly measurements from a single location, from the Open Data
710
on AWS bucket.
@@ -23,3 +26,6 @@ data
2326
<Aside type="caution" title="Warning">
2427
This will download over 350 files to your system, roughly 1.5 MB of data.
2528
</Aside>
29+
30+
31+
<FeedbackForm />

0 commit comments

Comments
 (0)