Skip to content

Instantly share code, notes, and snippets.

@brey
Created March 5, 2022 19:46
Show Gist options
  • Save brey/68c8992b89bd41d128c01e7f9a08ab81 to your computer and use it in GitHub Desktop.
Save brey/68c8992b89bd41d128c01e7f9a08ab81 to your computer and use it in GitHub Desktop.
searvey sources site parse
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"#to use the full width of the browser window uncomment the code below and execute the cell\n",
"from IPython.core.display import display, HTML\n",
"display(HTML(\"<style>.container { width:100% !important; }</style>\"))"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"import pandas as pd\n",
"import numpy as np\n",
"import requests"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"from pydap.client import open_url "
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"from dateutil.parser import parse"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"import datetime"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"import re"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"import bisect"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"from thredds_crawler.crawl import Crawl"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"#import seaborn"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"from selenium import webdriver\n",
"from selenium.webdriver.chrome.options import Options"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"from bs4 import BeautifulSoup"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"#%matplotlib widget"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"chrome_options = Options() \n",
"chrome_options.add_argument(\"--headless\") "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# GLOSS"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"html = requests.get('https://www.gloss-sealevel.org/gloss-station-handbook').content"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"gloss = pd.read_html(html)[0]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"gloss"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"gloss[gloss['Station'].str.contains(\"Quarry\")]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"#save DataFrame\n",
"gloss.to_csv('gloss.csv',encoding='utf-8',index=False)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# SOEST catalog"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"driver = webdriver.Chrome('/Users/brey/Downloads/chromedriver',options=chrome_options)\n",
"driver.get('https://uhslc.soest.hawaii.edu/data/?fd')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"table = driver.find_element_by_tag_name('body')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"table_html = table.get_attribute('innerHTML')\n",
"#table_html"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"uh = pd.read_html(table_html)[0]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"uh.head()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"uh = uh.loc[:,['UH#','GLOSS#','Location','Country','Latitude','Longitude','Start','End']]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"uh[uh['Location'].str.contains(\"Majuro\")]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"uh[uh['Country'].str.contains(\"Hong Kong\")]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### extract links"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
" - NOTE : This used to work but not anymore"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"crawler = Crawl('http://uhslc.soest.hawaii.edu/thredds/uhslc_fast_hourly.html', debug=True)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"info = pd.DataFrame([(d.id, d.name, s.get(\"url\")) for d in crawler.datasets for s in d.services if s.get(\"service\") == \"OPENDAP\"])"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"info.columns = ['id','name','link']"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"info.head()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"#select a location\n",
"loc = info[info['name'].str.contains(\"Quarry\")]\n",
"loc"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"#get the link\n",
"loc['link']"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"tg_link = loc['link'].values[0]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"tg_link"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Add links to the Dataframe"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"info.head()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"#create a column with only the ID \n",
"info['UH#'] = info.loc[:,'id'].apply(lambda row: row[3:6])"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"info.head()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"info['UH#'] = info['UH#'].apply(pd.to_numeric)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"uh = uh.merge(info, left_on=['UH#'], right_on=['UH#'])"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"uh.head()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"uh[uh['Location'].str.contains(\"Majuro\")]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"uh[uh['Location'].str.contains(\"Majuro\")]['link'].values[0]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"#save DataFrame\n",
"uh.to_csv('soest.csv',encoding='utf-8',index=False)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# IOC catalog"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"driver = webdriver.Chrome('/Users/brey/Downloads/chromedriver',options=chrome_options)\n",
"driver.get('http://www.ioc-sealevelmonitoring.org/ssc/')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"table = driver.find_element_by_tag_name('body')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"table_html = table.get_attribute('innerHTML')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"locs = pd.read_html(table_html,skiprows=4)[0]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"ioc = locs.loc[:,locs.columns[:14]]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"ioc = ioc[:-1]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"ioc[ioc['Station Name'].str.contains('Quarry')]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"#save DataFrame\n",
"ioc.to_csv('ioc.csv',encoding='utf-8',index=False)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"ioc"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Additional IOC table with real time info "
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"driver = webdriver.Chrome('/Users/brey/Downloads/chromedriver',options=chrome_options)\n",
"driver.get('http://www.ioc-sealevelmonitoring.org/list.php')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"table = driver.find_element_by_tag_name('body')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"table_html = table.get_attribute('innerHTML')\n",
"locs = pd.read_html(table_html,skiprows=12)[0]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"ioc2 = locs.loc[:,locs.columns[:11]]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"ioc2"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# parse the header from the first row\n",
"columns = list(ioc2.iloc[0,:6].values)\n",
"columns.extend(ioc2.iloc[0,6].encode('utf-8').split(b'\\xc2\\xa0\\xc2\\xa0\\xc2\\xa0'))\n",
"columns.extend(list(ioc2.iloc[0,7:].values))\n",
"#clean\n",
"columns = [x.strip() for x in columns]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"columns"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"#set header correctly\n",
"ioc2.columns = columns\n",
"ioc2 = ioc2.reindex(ioc2.index.drop(0))"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"ioc2.head()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"#save DataFrame\n",
"ioc2.to_csv('ioc2.csv',encoding='utf-8',index=False)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"#Merge the two ioc DataFrames\n",
"ioc3 = ioc.merge(ioc2, left_on=['Station Name'], right_on=['Location'])"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"#save DataFrame\n",
"ioc3.to_csv('ioc3.csv',encoding='utf-8',index=False)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"ioc3"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "searvey",
"language": "python",
"name": "searvey"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.7"
},
"toc": {
"nav_menu": {},
"number_sections": true,
"sideBar": true,
"skip_h1_title": false,
"title_cell": "Table of Contents",
"title_sidebar": "Contents",
"toc_cell": false,
"toc_position": {},
"toc_section_display": true,
"toc_window_display": false
}
},
"nbformat": 4,
"nbformat_minor": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment