Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • actris/jupyter-hub
1 result
Show changes
Commits on Source (5)
......@@ -100,7 +100,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.12"
"version": "3.9.7"
}
},
"nbformat": 4,
......
......@@ -2367,7 +2367,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.12"
"version": "3.9.7"
}
},
"nbformat": 4,
......
......@@ -2253,7 +2253,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.12"
"version": "3.9.7"
}
},
"nbformat": 4,
......
%% Cell type:code id:2230c250 tags:
%% Cell type:markdown id:0a1cd101 tags:
<img src='https://www.actris.eu/sites/default/files/inline-images/Actris%20logo.png' width=200 align=right>
# ACTRIS DC
## Access ozon data
%% Cell type:code id:b4331a4f tags:
``` python
# import packages
import pandas as pd
import numpy as np
import requests
import json
```
%% Cell type:code id:473d0977 tags:
``` python
response = requests.get("https://prod-actris-md.nilu.no/Metadata/Instrument/uv_abs")
archive = response.json()
```
%% Cell type:code id:4405678d tags:
``` python
archive
```
%% Output
[]
%% Cell type:code id:0edfeb17 tags:
``` python
```
......