Skip to content

Instantly share code, notes, and snippets.

@csb19815
Created May 1, 2018 20:39
Show Gist options
  • Save csb19815/682e0f6f30844313213fa5715e48df8c to your computer and use it in GitHub Desktop.
Save csb19815/682e0f6f30844313213fa5715e48df8c to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [],
"source": [
"import datetime\n",
"import os\n",
"import partridge as ptg\n",
"\n",
"inpath = '/Users/Charlie/Downloads/PTOM2018_needsmerged.zip'\n",
"outpath = '/Users/Charlie/Downloads/PTOM2018_merged.zip'"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {},
"outputs": [],
"source": [
"feed = ptg.raw_feed(inpath)"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {},
"outputs": [],
"source": [
"agency_id = feed.agency.iloc[0].agency_id\n",
"feed.routes.agency_id = agency_id"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"'/Users/Charlie/Code/gtfs-workspace/temp.zip'"
]
},
"execution_count": 17,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"ptg.writers.write_feed_dangerously(feed, 'temp.zip')"
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"'/Users/Charlie/Downloads/PTOM2018_merged.zip'"
]
},
"execution_count": 18,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"ptg.writers.extract_feed('temp.zip', outpath, {})"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {},
"outputs": [],
"source": [
"os.unlink('temp.zip')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"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.6.5"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment