Skip to content

Commit

Permalink
add usa-airports-net.ipynb example to /notebooks (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomFractals committed Aug 10, 2021
1 parent 0ffc4b3 commit ee8e1f3
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions notebooks/usa-airports-net.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"cells": [
{
"cell_type": "markdown",
"source": [
"# USA Airports .NET Interactive Notebook 📓"
],
"metadata": {}
},
{
"cell_type": "code",
"execution_count": null,
"source": [
"using System.Net.Http;\r\n",
"var dataUrl = \"https://raw.githubusercontent.com/RandomFractals/vscode-leaflet/main/data/geojson/usa-airports.geojson\";\r\n",
"var data = await new HttpClient().GetStringAsync(dataUrl);\r\n",
"data"
],
"outputs": [],
"metadata": {
"dotnet_interactive": {
"language": "csharp"
}
}
}
],
"metadata": {
"orig_nbformat": 4,
"language_info": {
"file_extension": ".cs",
"mimetype": "text/x-csharp",
"name": "C#",
"pygments_lexer": "csharp",
"version": "9.0"
},
"kernelspec": {
"display_name": ".NET (C#)",
"language": "C#",
"name": ".net-csharp"
}
},
"nbformat": 4,
"nbformat_minor": 2
}

0 comments on commit ee8e1f3

Please sign in to comment.