Add better note on top of export page indicating experimental status
This commit is contained in:
parent
7e33fb6424
commit
af3e9574e4
|
@ -1,7 +1,7 @@
|
||||||
import React, { useState, useCallback, useMemo } from "react";
|
import React, { useState, useCallback, useMemo } from "react";
|
||||||
import { Source, Layer } from "react-map-gl";
|
import { Source, Layer } from "react-map-gl";
|
||||||
import _ from "lodash";
|
import _ from "lodash";
|
||||||
import { Button, Form, Dropdown, Header } from "semantic-ui-react";
|
import { Button, Form, Dropdown, Header, Message, Icon } from "semantic-ui-react";
|
||||||
|
|
||||||
import { useConfig } from "config";
|
import { useConfig } from "config";
|
||||||
import { Page, Map } from "components";
|
import { Page, Map } from "components";
|
||||||
|
@ -120,11 +120,25 @@ export default function ExportPage() {
|
||||||
<Page>
|
<Page>
|
||||||
<Header as="h2">Export</Header>
|
<Header as="h2">Export</Header>
|
||||||
|
|
||||||
|
<Message icon info>
|
||||||
|
<Icon name="info circle" />
|
||||||
|
<Message.Content>
|
||||||
<p>
|
<p>
|
||||||
This page allows you to export parts of the public dataset. Please note
|
This page allows you to export parts of the public dataset under
|
||||||
the license.
|
the license for data announced in the privacy statement of this
|
||||||
|
site.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Please consider this export <b>experimental</b> and expect the data
|
||||||
|
shape to change in the future. Automated usage of this export
|
||||||
|
functionality is discouraged for now. Try not to use too much computing
|
||||||
|
capacity when exporting data, so select the bounding box as small as
|
||||||
|
possible and do not exceed unreasonable poll frequencies.
|
||||||
|
</p>
|
||||||
|
</Message.Content>
|
||||||
|
</Message>
|
||||||
|
|
||||||
<Form>
|
<Form>
|
||||||
<Form.Field>
|
<Form.Field>
|
||||||
<label>Mode</label>
|
<label>Mode</label>
|
||||||
|
|
Loading…
Reference in a new issue