diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml new file mode 100644 index 0000000000..e21712e4bd --- /dev/null +++ b/.github/workflows/codespell.yml @@ -0,0 +1,25 @@ +# Codespell configuration is within pyproject.toml +--- +name: Codespell + +on: + push: + branches: [master] + pull_request: + branches: [master] + +permissions: + contents: read + +jobs: + codespell: + name: Check for spelling errors + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Annotate locations with typos + uses: codespell-project/codespell-problem-matcher@v1 + - name: Codespell + uses: codespell-project/actions-codespell@v2 diff --git a/pyproject.toml b/pyproject.toml index 7311ad3a36..0c68b7219d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,3 +23,11 @@ dependencies = [ "squarify>=0.4.4", ] line-length = 70 + +[tool.codespell] +# Ref: https://github.com/codespell-project/codespell#using-a-config-file +skip = '.git*,*.svg,package-lock.json,*.css,*.csv' +check-hidden = true +# ignore embedded images and super long lines +ignore-regex = '^\s*"image/\S+": ".*|.{400,}' +# ignore-words-list = '' diff --git a/src/components/Layout.js b/src/components/Layout.js index 7f2585dafe..ae727b23d2 100644 --- a/src/components/Layout.js +++ b/src/components/Layout.js @@ -15,7 +15,7 @@ import TableOfContent from '../components/TableOfContent'; // - add the table of content // Import Styles = bootstrap + custom -// Custom must be AFTER bootstrap. It makes sure custom style are not overriden +// Custom must be AFTER bootstrap. It makes sure custom style are not overridden import 'bootstrap/dist/css/bootstrap.min.css'; import '../styles/style.css'; import AdInjector from './AdInjector'; diff --git a/src/functions/kdeplot.js b/src/functions/kdeplot.js index 0812862282..156475cc78 100644 --- a/src/functions/kdeplot.js +++ b/src/functions/kdeplot.js @@ -147,7 +147,7 @@ const param5 = { name: 'fill', description: (
- Control wether or not the area under the curve is filled with color. See
+ Control whether or not the area under the curve is filled with color. See
the color argument to control its color.
PIL and io libraries.PIL and io libraries.Python and Matplotlib. This blogpost walks you through all the involved steps, from the data preparation to the final layout customizations.",
+ "description": "This post shows how to create a visualisation that is made of a heatmap and several radial barcharts arranged in a highly customized multi panel layout in Python and Matplotlib. This blogpost walks you through all the involved steps, from the data preparation to the final layout customizations.",
"family": "ranking",
"interpreter": {
"hash": "3686ee99cf97e54b2221cc01a9163c2ecb8b74c86b397fcd00b705cd13cfc515"
diff --git a/src/notebooks/web-heatmap-comparison.ipynb b/src/notebooks/web-heatmap-comparison.ipynb
index 756715786c..cc11494352 100644
--- a/src/notebooks/web-heatmap-comparison.ipynb
+++ b/src/notebooks/web-heatmap-comparison.ipynb
@@ -236,7 +236,7 @@
"\n",
"Now let's add a **legend** to the heatmaps so that it's more understandable.\n",
"\n",
- "We add both `Consommation d'Γ©nergie` and `Consommation d'Γ©nergie par habitant` to the legend using the `text()` function."
+ "We add both `Consommation d'Γ©nergie` and `Consommation d'Γ©nergie par inhabitant` to the legend using the `text()` function."
]
},
{
@@ -280,7 +280,7 @@
" if i==0: # first heatmap\n",
" text = \"Consommation d'Γ©nergie\"\n",
" else: # second heatmap\n",
- " text = \"Consommation d'Γ©nergie par habitant\"\n",
+ " text = \"Consommation d'Γ©nergie par inhabitant\"\n",
" ax_text(\n",
" 0, 12.4,\n",
" f\"<{text}>\",\n",
@@ -383,7 +383,7 @@
" if i==0: # first heatmap\n",
" text = \"Consommation d'Γ©nergie\"\n",
" else: # second heatmap\n",
- " text = \"Consommation d'Γ©nergie par habitant\"\n",
+ " text = \"Consommation d'Γ©nergie par inhabitant\"\n",
" ax_text(\n",
" 0, 12.4,\n",
" f\"<{text}>\",\n",
@@ -435,7 +435,7 @@
")\n",
"\n",
"# subtitle\n",
- "text = \"Consommation d'Γ©nergie et consommation d'Γ©nergie par habitant, de 2011 Γ 2021, par rΓ©gion (or Corse et territoires d'outre-mer)\"\n",
+ "text = \"Consommation d'Γ©nergie et consommation d'Γ©nergie par inhabitant, de 2011 Γ 2021, par rΓ©gion (or Corse et territories d'outre-mer)\"\n",
"ax_text(\n",
" 0, -3.5,\n",
" text,\n",
@@ -449,7 +449,7 @@
"text = \"\"\"\n",
"Python and Matplotlib. This blogpost guides you through a step-by-step construction of every aspect of the plot, including a variety of custom color annotations, labels, and more!",
+ "description": "A custom visualisation that combines a lineplot with a stacked area chart to explore the evolution of child labour made with Python and Matplotlib. This blogpost guides you through a step-by-step construction of every aspect of the plot, including a variety of custom color annotations, labels, and more!",
"family": "evolution",
"kernelspec": {
"display_name": "plots",
diff --git a/src/notebooks/web-lollipop-with-background-image.ipynb b/src/notebooks/web-lollipop-with-background-image.ipynb
index fdb45a78c0..841a44903c 100644
--- a/src/notebooks/web-lollipop-with-background-image.ipynb
+++ b/src/notebooks/web-lollipop-with-background-image.ipynb
@@ -853,7 +853,7 @@
"\n",
"You might also be interested in\n",
"\n",
- "- this [great dumbell chart](/web-dumbell-chart), which is a variation of the lollipop plot\n",
+ "- this [great dumbbell chart](/web-dumbbell-chart), which is a variation of the lollipop plot\n",
"- this [other really cool lollipop plot](/web-lollipop-plot-with-python-mario-kart-64-world-records) about Mario Kart 64 world records\n"
]
}
@@ -867,7 +867,7 @@
"language": "python",
"name": "python3"
},
- "keywords": "lollipop, dumbell, seaborn, python, annotation, image, background, plot, chart",
+ "keywords": "lollipop, dumbbell, seaborn, python, annotation, image, background, plot, chart",
"language_info": {
"codemirror_mode": {
"name": "ipython",
diff --git a/src/notebooks/web-lollipop-with-colormap-and-arrow.ipynb b/src/notebooks/web-lollipop-with-colormap-and-arrow.ipynb
index 89f60361cf..214aaa1062 100644
--- a/src/notebooks/web-lollipop-with-colormap-and-arrow.ipynb
+++ b/src/notebooks/web-lollipop-with-colormap-and-arrow.ipynb
@@ -25,7 +25,7 @@
"source": [
"## Libraries\n",
"\n",
- "First, you need to install the following librairies:\n",
+ "First, you need to install the following libraries:\n",
"\n",
"- [matplotlib](/matplotlib) is used for creating the chart and add customization features\n",
"- [pandas](/pandas) for loading the dataset\n",
@@ -389,7 +389,7 @@
"\n",
"You might be interested in:\n",
"\n",
- "- how to create a [dumbell chart](/web-lollipop-plot-with-python-mario-kart-64-world-records)\n",
+ "- how to create a [dumbbell chart](/web-lollipop-plot-with-python-mario-kart-64-world-records)\n",
"- how to use a [lollipop for a time series](/web-lollipop-plot-with-python-the-office)\n",
"- this tuto about [circular lollipop](/web-circular-lollipop-plot-with-matplotlib)\n"
]
diff --git a/src/notebooks/web-map-europe-with-color-by-country.ipynb b/src/notebooks/web-map-europe-with-color-by-country.ipynb
index 0e625354a3..9aadad437a 100644
--- a/src/notebooks/web-map-europe-with-color-by-country.ipynb
+++ b/src/notebooks/web-map-europe-with-color-by-country.ipynb
@@ -25,7 +25,7 @@
"source": [
"## Libraries\n",
"\n",
- "First, you need to install the following librairies:\n",
+ "First, you need to install the following libraries:\n",
"\n",
"- [matplotlib](https://python-graph-gallery.com/matplotlib/) is used for creating the chart and add customization features\n",
"- [pandas](https://python-graph-gallery.com/pandas/) and `geopandas` are used to put the data into a dataframe and manipulate geographical data\n",
@@ -132,7 +132,7 @@
"\n",
"Thanks to the `geopandas` library, we can easily add a **background map** to our plot. We just need to call the `plot()` function on our `geo dataframe`.\n",
"\n",
- "With just a few lines of code, we can create a **syntetic map** that shows a European map.\n"
+ "With just a few lines of code, we can create a **synthetic map** that shows a European map.\n"
]
},
{
@@ -406,7 +406,7 @@
" {\"fontweight\": 'bold'}],\n",
" ax=ax)\n",
"\n",
- "# bloc of text on the right\n",
+ "# block of text on the right\n",
"fig.text(0.72, 0.51, 'Even geographical neighbors\\ncan have very different rates',\n",
" fontsize=10,\n",
" fontweight='ultralight',\n",
@@ -422,7 +422,7 @@
" **kw)\n",
"plt.gca().add_patch(a)\n",
"\n",
- "# bloc of text on the bottom\n",
+ "# block of text on the bottom\n",
"fig.text(0.35, 0.14, 'Southern countries seem\\nto have lower rates than\\nnorthern ones',\n",
" fontsize=10,\n",
" fontweight='ultralight',\n",
diff --git a/src/notebooks/web-map-usa-with-scatter-plot-on-top.ipynb b/src/notebooks/web-map-usa-with-scatter-plot-on-top.ipynb
index 02c3c10e84..84bae8bb5d 100644
--- a/src/notebooks/web-map-usa-with-scatter-plot-on-top.ipynb
+++ b/src/notebooks/web-map-usa-with-scatter-plot-on-top.ipynb
@@ -25,7 +25,7 @@
"source": [
"## Libraries\n",
"\n",
- "First, you need to install the following librairies:\n",
+ "First, you need to install the following libraries:\n",
"\n",
"- [matplotlib](https://python-graph-gallery.com/matplotlib/) is used for creating the chart and add customization features\n",
"- [pandas](https://python-graph-gallery.com/pandas/) and `geopandas` are used to put the data into a dataframe and manipulate geographical data\n",
@@ -285,7 +285,7 @@
"\n",
"Thanks to the `geopandas` library, we can easily add a **background map** to our plot. We just need to call the `plot()` function on our `geo dataframe`.\n",
"\n",
- "With just a few lines of code, we can create a **syntetic map** that shows a US map.\n"
+ "With just a few lines of code, we can create a **synthetic map** that shows a US map.\n"
]
},
{
@@ -415,7 +415,7 @@
"\n",
"Colors is part of the most important part of a plot. Here we define lots of colors to make the plot more **readable** and **beautiful**.\n",
"\n",
- "Concretly, here is what we change:\n",
+ "Concretely, here is what we change:\n",
"\n",
"- **edgecolor** of the map and individual data points\n",
"- **background color** of the plot\n",
diff --git a/src/notebooks/web-map-with-custom-legend.ipynb b/src/notebooks/web-map-with-custom-legend.ipynb
index d17211f031..4272f6426e 100644
--- a/src/notebooks/web-map-with-custom-legend.ipynb
+++ b/src/notebooks/web-map-with-custom-legend.ipynb
@@ -25,7 +25,7 @@
"source": [
"## Libraries\n",
"\n",
- "First, you need to install the following librairies:\n",
+ "First, you need to install the following libraries:\n",
"\n",
"- [matplotlib](/matplotlib) is used for creating the chart and add customization features\n",
"- [pandas](/pandas) and `geopandas` are used to put the data into a dataframe and manipulate geographical data\n",
diff --git a/src/notebooks/web-multiple-lines-and-panels.ipynb b/src/notebooks/web-multiple-lines-and-panels.ipynb
index e2cf779a9d..acc0d8397b 100644
--- a/src/notebooks/web-multiple-lines-and-panels.ipynb
+++ b/src/notebooks/web-multiple-lines-and-panels.ipynb
@@ -311,7 +311,7 @@
"# Add title\n",
"# Note this does not use the `.set_title()` method, but just a normal `.text()`\n",
"# This is to gain more control of the position.\n",
- "# `transform=ax.transAxes` means the coordintes are in terms of the Axis and not the data\n",
+ "# `transform=ax.transAxes` means the coordinates are in terms of the Axis and not the data\n",
"ax.text(0, 1.025, \"Program 1\", weight=\"bold\", size=18, transform=ax.transAxes)\n",
"\n",
"fig"
diff --git a/src/notebooks/web-multiple-maps.ipynb b/src/notebooks/web-multiple-maps.ipynb
index 838f99f9cb..c4474b2d73 100644
--- a/src/notebooks/web-multiple-maps.ipynb
+++ b/src/notebooks/web-multiple-maps.ipynb
@@ -323,9 +323,9 @@
"source": [
"## Custom colors\n",
"\n",
- "For this chart, we define a `colors` dictionnary that contains column names as keys, and a **list of 2 colors** as values. We do so in order to then create colormaps (or cmap) based on those colors, thanks to the `create_gradient_colormap()` function, defined below.\n",
+ "For this chart, we define a `colors` dictionary that contains column names as keys, and a **list of 2 colors** as values. We do so in order to then create colormaps (or cmap) based on those colors, thanks to the `create_gradient_colormap()` function, defined below.\n",
"\n",
- "We also use the `set_facecolor()` to **change background color** of the figure and the lollipop axe. The first axe **does not need** it since it will be completly removed in the next step and will **have the figure color** as well.\n"
+ "We also use the `set_facecolor()` to **change background color** of the figure and the lollipop axe. The first axe **does not need** it since it will be completely removed in the next step and will **have the figure color** as well.\n"
]
},
{
@@ -958,7 +958,7 @@
"\n",
"You might be interested in\n",
"\n",
- "- reproducing a [beautiful dumbell/lollipop chart](/web-dumbell-chart)\n",
+ "- reproducing a [beautiful dumbbell/lollipop chart](/web-dumbbell-chart)\n",
"- how to create a fully customized [choropleth map](/web-map-europe-with-color-by-country).\n"
]
}
diff --git a/src/notebooks/web-ordered-mirror-barplot.ipynb b/src/notebooks/web-ordered-mirror-barplot.ipynb
index 5e5688c998..158390e4ab 100644
--- a/src/notebooks/web-ordered-mirror-barplot.ipynb
+++ b/src/notebooks/web-ordered-mirror-barplot.ipynb
@@ -27,7 +27,7 @@
"source": [
"## Libraries\n",
"\n",
- "First, you need to install the following librairies:\n",
+ "First, you need to install the following libraries:\n",
"- [matplotlib](https://python-graph-gallery.com/matplotlib/) is used for creating the chart and add customization features\n",
"- `pandas` is used to put the data into a dataframe and data manipulation\n",
"- `numpy` is used for adding noise to the positions of each marker\n",
diff --git a/src/notebooks/web-population-pyramid.ipynb b/src/notebooks/web-population-pyramid.ipynb
index a26829ae82..72e7c976ed 100644
--- a/src/notebooks/web-population-pyramid.ipynb
+++ b/src/notebooks/web-population-pyramid.ipynb
@@ -31,7 +31,7 @@
"source": [
"## Libraries\n",
"\n",
- "First, you need to install the following librairies:\n",
+ "First, you need to install the following libraries:\n",
"- [matplotlib](https://python-graph-gallery.com/matplotlib/) is used for creating the chart and for customization\n",
"- `pandas` is used to put the data into a dataframe\n",
"- `seaborn` will be used for its `barplot()` function."
diff --git a/src/notebooks/web-radar-chart-with-matplotlib.ipynb b/src/notebooks/web-radar-chart-with-matplotlib.ipynb
index 9c1783aed3..911c755409 100644
--- a/src/notebooks/web-radar-chart-with-matplotlib.ipynb
+++ b/src/notebooks/web-radar-chart-with-matplotlib.ipynb
@@ -412,7 +412,7 @@
"source": [
"## Customize guides and annotations\n",
"\n",
- "The plot above looks quite nice for a start. But so many lines and labels for the axes are unnecesary (and also boring!). Let's remove these defaults and improve this chart with more beautiful custom annotations and guides."
+ "The plot above looks quite nice for a start. But so many lines and labels for the axes are unnecessary (and also boring!). Let's remove these defaults and improve this chart with more beautiful custom annotations and guides."
]
},
{
diff --git a/src/notebooks/web-scatter-with-customized-annotations.ipynb b/src/notebooks/web-scatter-with-customized-annotations.ipynb
index 412d327017..f2b472d49f 100644
--- a/src/notebooks/web-scatter-with-customized-annotations.ipynb
+++ b/src/notebooks/web-scatter-with-customized-annotations.ipynb
@@ -23,7 +23,7 @@
"source": [
"## Libraries\n",
"\n",
- "First, we need to install the following librairies:\n"
+ "First, we need to install the following libraries:\n"
]
},
{
@@ -197,7 +197,7 @@
"source": [
"## Basic scatter plot\n",
"\n",
- "The core of the chart is simply based on the `scatter()` funtion from [matplotlib](/matplotlib). You can learn more about it in the [dedicated section](/scatter-plot) of the gallery.\n"
+ "The core of the chart is simply based on the `scatter()` function from [matplotlib](/matplotlib). You can learn more about it in the [dedicated section](/scatter-plot) of the gallery.\n"
]
},
{
diff --git a/src/notebooks/web-scatterplot-text-annotation-and-regression-matplotlib.ipynb b/src/notebooks/web-scatterplot-text-annotation-and-regression-matplotlib.ipynb
index 2d092c0a36..6b4125b9d9 100644
--- a/src/notebooks/web-scatterplot-text-annotation-and-regression-matplotlib.ipynb
+++ b/src/notebooks/web-scatterplot-text-annotation-and-regression-matplotlib.ipynb
@@ -60,7 +60,7 @@
"Today's chart uses the [`corruption`](https://wilkelab.org/practicalgg/reference/corruption.html) dataset in the practicalgg package. This data contains information about Corruption Perceptions Index (CPI) and Human Development Index (HDI) for 176 countries, from 2012 to 2015. \n",
"\n",
"The original source are the [Corruption Perceptions Index 2016](https://www.transparency.org/en/news/corruption-perceptions-index-2016#table) released by [Transparency International](https://transparency.org) and the [Human Development Index](http://hdr.undp.org/en/data#) made available in the \n",
- "[Human Development Reports](http://hdr.undp.org/en/) by the [United Nations Development Programme](https://www.undp.org/). These datasets were merged and made available by [Claus O. Wilke](https://clauswilke.com/) as the `corruption` dataset in his `practicalgg` package. Thanks to Claus for all the work and making this possible!"
+ "[Human Development Reports](http://hdr.undp.org/en/) by the [United Nations Development Programme](https://www.undp.org/). These datasets were merged and made available by [Clause O. Wilke](https://clauswilke.com/) as the `corruption` dataset in his `practicalgg` package. Thanks to Clause for all the work and making this possible!"
]
},
{
diff --git a/src/notebooks/web-scatterplot-with-images-in-circles.ipynb b/src/notebooks/web-scatterplot-with-images-in-circles.ipynb
index 26be77e9d1..6b4eb5ed1f 100644
--- a/src/notebooks/web-scatterplot-with-images-in-circles.ipynb
+++ b/src/notebooks/web-scatterplot-with-images-in-circles.ipynb
@@ -104,7 +104,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
- "Now we can use this function to store the images in a dictionnary where the **keys are the names** and the **values are the images**."
+ "Now we can use this function to store the images in a dictionary where the **keys are the names** and the **values are the images**."
]
},
{
@@ -142,7 +142,7 @@
"\n",
"The first we're gonna do is to **create the chart and add the figures**. Since the background of the initial chart is black, we put the `fig` and `ax` to black with the `set_facecolor()` function.\n",
"\n",
- "Then we **iterate over each image** of our dictionnary and add them to the plot using the `add_axes()` and `imshow()` functions from [matplotlib](https://python-graph-gallery.com/matplotlib/). \n",
+ "Then we **iterate over each image** of our dictionary and add them to the plot using the `add_axes()` and `imshow()` functions from [matplotlib](https://python-graph-gallery.com/matplotlib/). \n",
"\n",
"During the iteration, we also get the **name of the actor** in a rectangle. I'm using the `annotate()` function to add the **name along with a bounding box**. The `bbox_props` dictionary defines the **style of the bounding box**. This approach should help ensure that the rectangles appear around each name correctly."
]
diff --git a/src/notebooks/web-slope-chart-matplotlib.ipynb b/src/notebooks/web-slope-chart-matplotlib.ipynb
index 50538cc840..ef955a6abf 100644
--- a/src/notebooks/web-slope-chart-matplotlib.ipynb
+++ b/src/notebooks/web-slope-chart-matplotlib.ipynb
@@ -27,7 +27,7 @@
"source": [
"## Libraries\n",
"\n",
- "First, you need to install the following librairies:\n",
+ "First, you need to install the following libraries:\n",
"- [matplotlib](https://python-graph-gallery.com/matplotlib/) is used for creating the slope chart and for customization\n",
"- [seaborn](https://python-graph-gallery.com/seaborn/) is used for creating the parallel plot\n",
"- `pandas` is used for loading the dataset"
diff --git a/src/notebooks/web-small-multiple-with-highlights.ipynb b/src/notebooks/web-small-multiple-with-highlights.ipynb
index ae73a10cbb..bc51164c76 100644
--- a/src/notebooks/web-small-multiple-with-highlights.ipynb
+++ b/src/notebooks/web-small-multiple-with-highlights.ipynb
@@ -458,7 +458,7 @@
"id": "434513af",
"metadata": {},
"source": [
- "## Highligh first and last value\n",
+ "## Highlight first and last value\n",
"\n",
"For each subplot, we will highlight the **first and last value** of the line. This is done by adding a **dot** at the first and last value of the line. We also add a **text annotation** next to the dot to make it more explicit.\n"
]
@@ -1267,7 +1267,7 @@
"source": [
"## Going further\n",
"\n",
- "You migth be interested in:\n",
+ "You might be interested in:\n",
"\n",
"- this beautiful small [multiple connected scatter plot](/web-highlighted-lineplot-with-faceting)\n",
"- this [small multiple line chart](/web-line-chart-small-multiple) with reference lines\n"
diff --git a/src/notebooks/web-stacked-area-charts-on-a-map.ipynb b/src/notebooks/web-stacked-area-charts-on-a-map.ipynb
index cbcf20e3ca..1388c77fab 100644
--- a/src/notebooks/web-stacked-area-charts-on-a-map.ipynb
+++ b/src/notebooks/web-stacked-area-charts-on-a-map.ipynb
@@ -19,7 +19,7 @@
"source": [
"## Libraries\n",
"\n",
- "First, you need to install the following librairies:\n",
+ "First, you need to install the following libraries:\n",
"- [matplotlib](https://python-graph-gallery.com/matplotlib/) is used for creating the chart and add customization features\n",
"- `pandas` is used to put the data into a dataframe and data manipulation\n",
"\n",
@@ -328,7 +328,7 @@
"- the first argument specifies that the text must be at **30% to the right** and the second at **90% upwards**\n",
"- we **center the text** using the `ha` and `va` arguments\n",
"- we change the **text size** using the `fontsize` argument\n",
- "- we use a dictionnary of properties `font_params` for the title that defines the **font and other properties** to use\n",
+ "- we use a dictionary of properties `font_params` for the title that defines the **font and other properties** to use\n",
"\n",
"To change the size of the 'AK' graph, we perform a **special case** in our loop at position (0,6) to apply the `set_position()` function. It specifies the **new position and dimensions** of the graph in question.\n",
"\n",
diff --git a/src/notebooks/web-stacked-line-chart-with-labels.ipynb b/src/notebooks/web-stacked-line-chart-with-labels.ipynb
index 76ebc66f28..b90b903e0c 100644
--- a/src/notebooks/web-stacked-line-chart-with-labels.ipynb
+++ b/src/notebooks/web-stacked-line-chart-with-labels.ipynb
@@ -33,7 +33,7 @@
"source": [
"## Libraries\n",
"\n",
- "For this tutorial, you'll need to install the following librairies:\n",
+ "For this tutorial, you'll need to install the following libraries:\n",
"\n",
"- [matplotlib](https://python-graph-gallery.com/matplotlib/) is the main library used for both graphics and customization.\n",
"- `pandas` will be used to open and manipulate our dataset\n",
@@ -262,7 +262,7 @@
"tags": []
},
"source": [
- "## Add anotation\n",
+ "## Add annotation\n",
"\n",
"This step can take some time, as many of the texts and annotations are added manually. We're mainly using `plt.text()` function from [matplotlib](https://python-graph-gallery.com/matplotlib/), which makes it **super-easy to add text** to a graph.\n",
"\n",
diff --git a/src/notebooks/web-streamchart-with-matplotlib.ipynb b/src/notebooks/web-streamchart-with-matplotlib.ipynb
index 6116e76894..57318accfc 100644
--- a/src/notebooks/web-streamchart-with-matplotlib.ipynb
+++ b/src/notebooks/web-streamchart-with-matplotlib.ipynb
@@ -91,7 +91,7 @@
"source": [
"## Load the dataset\n",
"\n",
- "This guide shows how to create a highly customized and beautiful streamchart to visualize the number of appearences of the most popular characters in Chris Claremont's sixteen-year run on Uncanny X-Men. \n",
+ "This guide shows how to create a highly customized and beautiful streamchart to visualize the number of appearances of the most popular characters in Chris Claremont's sixteen-year run on Uncanny X-Men. \n",
"\n",
"The original source of data for this week are the [Claremont Run Project](http://www.claremontrun.com/) and [Malcom Barret](https://twitter.com/malco_barrett) who put these datasets into a the R package [cleremontrun](https://github.com/malcolmbarrett/claremontrun). This guide uses the `character_visualization` dataset released for the [TidyTuesday](https://github.com/rfordatascience/tidytuesday) initiative on the week of 2021-06-30. You can find the original announcement and more information about the data [here](https://github.com/rfordatascience/tidytuesday/blob/master/data/2020/2020-06-30/readme.md). Thank you all for making this possible! "
]
@@ -150,7 +150,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
- "Next, `df_char_vis` and `df_best_chars` are merged into `df_best_stream`. It also contains, for each issue, the number of appearences by character, costume, and type."
+ "Next, `df_char_vis` and `df_best_chars` are merged into `df_best_stream`. It also contains, for each issue, the number of appearances by character, costume, and type."
]
},
{
@@ -404,7 +404,7 @@
"\n",
"For each combination of character and costume, there are a sequence of issues and the number of appearences for each issue. This first chart shows the `\"depicted\"` appearences only. The number of appearences are smoothed out using the Gaussian smoother defined as `gaussian_smooth()`. In few words, the number of appearences for a given issue is replaced with a weighted average of the number of appearences with the weights computed according to the Gaussian filter. For more information see [here](https://en.wikipedia.org/wiki/Kernel_smoother#Kernel_average_smoother).\n",
"\n",
- "Next, the data has to be put in the shape required by `ax.stackplot()`. The first argument, `x`, can be a one dimensional array. In this case, it is going to be the `grid` used to compute the weighted values. Then, `y` is going to be a list. Each element of the `values_smoothed` list is an array with the weigthed values, for each level in `\"char_costume\"`."
+ "Next, the data has to be put in the shape required by `ax.stackplot()`. The first argument, `x`, can be a one dimensional array. In this case, it is going to be the `grid` used to compute the weighted values. Then, `y` is going to be a list. Each element of the `values_smoothed` list is an array with the weighted values, for each level in `\"char_costume\"`."
]
},
{
@@ -659,7 +659,7 @@
],
"source": [
"# Add labels for each panel axis ---------------------------------\n",
- "# These labels indicate which type of appearence is represented\n",
+ "# These labels indicate which type of appearance is represented\n",
"# on each panel.\n",
"\n",
"levels = [\"depicted\", \"speech\", \"thought\", \"narrative\"]\n",
@@ -847,7 +847,7 @@
" edgecolor=GREY40,\n",
" labelspacing=-0.1,\n",
" loc=\"center\", \n",
- " ncol=5 # The 10 handles are splitted between 5 columns\n",
+ " ncol=5 # The 10 handles are split between 5 columns\n",
")\n",
"\n",
"# Change size and color of legend labels\n",
@@ -855,7 +855,7 @@
" text.set_fontsize(8) \n",
" text.set_color(GREY40)\n",
"\n",
- "# And finally give a rounded appearence to the frame of the legend\n",
+ "# And finally give a rounded appearance to the frame of the legend\n",
"legend.get_frame().set_boxstyle(\"round\", rounding_size=0.4, pad=0.1) \n",
"\n",
"\n",
@@ -893,7 +893,7 @@
"fig.text(\n",
" 0.5, \n",
" 0.02, \n",
- " \"Visualization by CΓ©dric Scherer β’ Data by Claremont Run Project via Malcom Barret β’ Popularity Scores by ranker.com β’ Logo by Comicraft\",\n",
+ " \"Visualization by CΓ©dric Scherer β’ Data by Claremont Run Project via Malcolm Barret β’ Popularity Scores by ranker.com β’ Logo by Comicraft\",\n",
" color=GREY40,\n",
" fontsize=8,\n",
" ha=\"center\"\n",
diff --git a/src/notebooks/web-text-repel-with-matplotlib.ipynb b/src/notebooks/web-text-repel-with-matplotlib.ipynb
index 0f8c755f4e..e4ac2dfb35 100644
--- a/src/notebooks/web-text-repel-with-matplotlib.ipynb
+++ b/src/notebooks/web-text-repel-with-matplotlib.ipynb
@@ -199,7 +199,7 @@
"id": "a28159b3",
"metadata": {},
"source": [
- "Today's vizualisation does not require much data preparation. The only preparation step is to drop observations with missing values."
+ "Today's visualisation does not require much data preparation. The only preparation step is to drop observations with missing values."
]
},
{
@@ -326,7 +326,7 @@
"source": [
"## Add labels with no overlap\n",
"\n",
- "What's truely missing here are __labels__. It's very frustrating not knowing which item is hidden under a data point, isn't it!?\n",
+ "What's truly missing here are __labels__. It's very frustrating not knowing which item is hidden under a data point, isn't it!?\n",
"\n",
"It is pretty challenging to add many labels on a plot since labels tend to overlap each other, making the figure unreadable. Fortunately, the `adjustText` package is here to help us. It provides an algorithm that will automatically place the labels for us. Let's do it!"
]
@@ -478,7 +478,7 @@
" text.set_fontname(\"Roboto\") # Change default font \n",
" text.set_fontsize(16) # Change default font size\n",
"\n",
- "# Grab title and customize its appearence.\n",
+ "# Grab title and customize its appearance.\n",
"legend.set_title(\"Species\")\n",
"legend_title = legend.get_title()\n",
"legend_title.set_fontname(\"Roboto\")\n",
diff --git a/src/notebooks/web-time-series-and-facetting-with-matplotlib.ipynb b/src/notebooks/web-time-series-and-facetting-with-matplotlib.ipynb
index 81f68ba356..45be6e2f94 100644
--- a/src/notebooks/web-time-series-and-facetting-with-matplotlib.ipynb
+++ b/src/notebooks/web-time-series-and-facetting-with-matplotlib.ipynb
@@ -870,7 +870,7 @@
}
],
"source": [
- "# Itereate trough rows\n",
+ "# Iterate through rows\n",
"for i in range(7):\n",
" # Iterate through columns\n",
" for j in range(8):\n",
diff --git a/src/notebooks/web-tornado-chart.ipynb b/src/notebooks/web-tornado-chart.ipynb
index 04f3d69b0b..25732ac512 100644
--- a/src/notebooks/web-tornado-chart.ipynb
+++ b/src/notebooks/web-tornado-chart.ipynb
@@ -124,7 +124,7 @@
" ----------\n",
" labels : np.array()\n",
" List of label titles used to identify the variables, y-axis of bar\n",
- " chart. The lengh of labels is used to itereate through to generate \n",
+ " chart. The length of labels is used to iterate through to generate \n",
" the bar charts.\n",
" midpoint : float\n",
" Center value for bar charts to extend from. In sensitivity analysis\n",
diff --git a/src/notebooks/web-waffle-chart-as-share.ipynb b/src/notebooks/web-waffle-chart-as-share.ipynb
index e43ef5352c..7ddd09dddf 100644
--- a/src/notebooks/web-waffle-chart-as-share.ipynb
+++ b/src/notebooks/web-waffle-chart-as-share.ipynb
@@ -24,7 +24,7 @@
"source": [
"## Libraries\n",
"\n",
- "First, you need to install the following librairies:\n",
+ "First, you need to install the following libraries:\n",
"\n",
"- [matplotlib](https://python-graph-gallery.com/matplotlib/) is used for creating the chart and add customization features\n",
"- `pandas` is used to put the data into a dataframe\n",
diff --git a/src/notebooks/web-waffle-chart-for-time-series.ipynb b/src/notebooks/web-waffle-chart-for-time-series.ipynb
index 6cf932653b..c01e35a5ac 100644
--- a/src/notebooks/web-waffle-chart-for-time-series.ipynb
+++ b/src/notebooks/web-waffle-chart-for-time-series.ipynb
@@ -24,7 +24,7 @@
"source": [
"## Libraries\n",
"\n",
- "First, you need to install the following librairies:\n",
+ "First, you need to install the following libraries:\n",
"\n",
"- [matplotlib](/matplotlib) is used for creating the chart and add customization features\n",
"- [pandas](/pandas) for data loading and manipulation\n",
@@ -505,7 +505,7 @@
],
"metadata": {
"chartType": "waffle",
- "description": "This post explains how to reproduce a waffle chart that is used in the context of time series. It describe the evolution of number of storms, splitted by storm type throughout time.- If you run a buisness that is highly related with python, data science + If you run a business that is highly related with python, data science or a closely related field, I would love to communicate about it in exchange of a few π°. We all need to put some butter in the spinach (French expression, sorry) πΈ. @@ -245,7 +245,7 @@ export default function About() {
An arc diagram is a special kind of network graph. It is constituted by nodes that represent entities and by links that show relationships between entities. In arc diagrams, nodes are displayed along a single axis and links are represented with arcs.";
export const Head = () => (
As often, note that the
Plotly is a python library made to create{' '}
- interactive charts. It is particularly poweful when it comes to
+ interactive charts. It is particularly powerful when it comes to
create interactive candlestick graphs.
diff --git a/src/pages/cheat-sheets.js b/src/pages/cheat-sheets.js
index c225317148..284710eeab 100644
--- a/src/pages/cheat-sheets.js
+++ b/src/pages/cheat-sheets.js
@@ -49,7 +49,7 @@ export default function CheatSheet() {
Datacamp is also a great contributor.
- Note that if you want to truely understand how matplotlib works,
+ Note that if you want to truly understand how matplotlib works,
Matplotlib Journey
{' '}
diff --git a/src/pages/circular-packing.js b/src/pages/circular-packing.js
index 2e81cffcbf..b6cf7d8c7f 100644
--- a/src/pages/circular-packing.js
+++ b/src/pages/circular-packing.js
@@ -39,7 +39,7 @@ export default function CircularPacking() {
The
Building a connected scatterplot with Python and Matplotlib is a
breeze thanks to the
diff --git a/src/pages/dendrogram.js b/src/pages/dendrogram.js
index 2a0ea13254..41401b6ef5 100644
--- a/src/pages/dendrogram.js
+++ b/src/pages/dendrogram.js
@@ -156,7 +156,7 @@ export default function Dendrogram() {
Dendrogram can also be used to display a hierarchy. A hierarchy as a
root node that gets divided in several children and so on.
diff --git a/src/pages/density-plot.js b/src/pages/density-plot.js
index 6c90c64519..57c93dee98 100644
--- a/src/pages/density-plot.js
+++ b/src/pages/density-plot.js
@@ -198,7 +198,7 @@ export default function DensityPlot() {
It is possible to build a density chart with
diff --git a/src/pages/heatmap.js b/src/pages/heatmap.js
index 872c7b79e0..73bb6aa5b3 100644
--- a/src/pages/heatmap.js
+++ b/src/pages/heatmap.js
@@ -82,7 +82,7 @@ export default function Heatmap() {
section starts with a post describing the basic usage of the function
based on any kind of data input. Next it will guide you through the
different ways to customize the chart, like{' '}
- controling color and{' '}
+ controlling color and{' '}
data normalization.
As far as I know, there isn't any proper way to build a hierarchical
edged bundling plot with python π. If you're aware of any tip to
- build it, please let me knwo! My contact is provided below ππ½.
+ build it, please let me know! My contact is provided below ππ½.
You now have 3 options!
As usual matplotlib is perfectly skilled
- to build nice histogram, but require some more work camparing to{' '}
+ to build nice histogram, but require some more work comparing to{' '}
seaborn to get a good looking figure.
diff --git a/src/pages/line-chart.js b/src/pages/line-chart.js
index db420bf3f4..541747bbcc 100644
--- a/src/pages/line-chart.js
+++ b/src/pages/line-chart.js
@@ -26,7 +26,7 @@ const chartDescription = (
A line chart{' '}
displays the evolution of one or several numeric variables.
- It is often used to represend time series.
+ It is often used to represent time series.
The line chart is one of the most common chart type. As a result,
@@ -382,7 +382,7 @@ export default function LinePlot() {
The post #190 goes in
depth on how to customize the
Once the chart has been saved, you can embed it in a html document
using:
diff --git a/src/pages/plotnine.js b/src/pages/plotnine.js
index 25bf73db79..22ea209cc1 100644
--- a/src/pages/plotnine.js
+++ b/src/pages/plotnine.js
@@ -247,7 +247,7 @@ export default function Post() {
/>
Seaborn alternative allows to
- write less code to build the chart, but is slighlty more limited in
+ write less code to build the chart, but is slightly more limited in
term of customization
circlify package is a pure Python implementation of
- a circle packing layout algorithm. It has been developped by{' '}
+ a circle packing layout algorithm. It has been developed by{' '}
Jerome Lecomte and lives on{' '}
github. ππ{' '}
Circlify can work without a hierarchical structure, i.e.
- with just a set of numeric varialbles that will be each displayed as a
+ with just a set of numeric variables that will be each displayed as a
bubble. Note that the package just compute the position and size of
each bubble. Once that's done, matplotlib is used to make
the chart itself with usual functions.
diff --git a/src/pages/connected-scatter-plot.js b/src/pages/connected-scatter-plot.js
index e63a938342..3c08e9c66f 100644
--- a/src/pages/connected-scatter-plot.js
+++ b/src/pages/connected-scatter-plot.js
@@ -56,7 +56,7 @@ export default function ConnectedScatter() {
plot() function. The 2 first
- argumenst are the X and Y values respectively, which can be stored
+ arguments are the X and Y values respectively, which can be stored
in a pandas data frame.
Dendrogram for hierarchical datasets
+ Dendrogram for hierarchical datasets
matplotlib,
- but it is truely a struggle compared to making it with{' '}
+ but it is truly a struggle compared to making it with{' '}
seaborn as shown above.
diff --git a/src/pages/histogram.js b/src/pages/histogram.js
index 89e8d0e35e..e91bea7e20 100644
--- a/src/pages/histogram.js
+++ b/src/pages/histogram.js
@@ -243,7 +243,7 @@ export default function Histogram() {
matplotlib
- title. All the main types of change are descried: changing its color,
+ title. All the main types of change are described: changing its color,
adding a subtitle, using math formulas and so on. Give it a go!
Embeding a plotly chart
+ Embedding a plotly chart
- pypalettes is pretty straightfoward to use. For instance,
+ pypalettes is pretty straightforward to use. For instance,
this is how to use a palette called Acadia once the
library is installed:
Matplotlib is the most common way to build a stacked area
chart with Python. The examples below start by explaining to basics of
the stackplot() function. The also describe the most
- common type of customization like changing colors, controling group
+ common type of customization like changing colors, controlling group
order and more.
- Several strategies exist to build table wih Python. Tweaking{' '}
+ Several strategies exist to build table with Python. Tweaking{' '}
matplotlib functions is doable but very verbose.{' '}
pandas has a couple of utility functions. But{' '}
The squarify library is a pure Python implementation of the squarify
- treemap layout algorithm. It is a project developped by{' '}
+ treemap layout algorithm. It is a project developed by{' '}
Uri Laserson that has its
documentation on{' '}
github.
diff --git a/src/pages/venn-diagram.js b/src/pages/venn-diagram.js
index a890d585c8..23bf8afdbe 100644
--- a/src/pages/venn-diagram.js
+++ b/src/pages/venn-diagram.js
@@ -114,7 +114,7 @@ export default function Venn() {
/>
Matplotlib, as usual, is another great
- otion to build violin charts with python. It comes with a{' '}
+ option to build violin charts with python. It comes with a{' '}
Here are a couple of examples:plottable is definitely the best option. It is a powerful
diff --git a/src/pages/timeseries.js b/src/pages/timeseries.js
index 282cf98efe..0a721b7dcb 100644
--- a/src/pages/timeseries.js
+++ b/src/pages/timeseries.js
@@ -256,7 +256,7 @@ export default function Pie() {
/>
violinplot() function that does all the hard work for us.
Date: 10/11/2018
circle_marker_ec0ccd607a902c15a8c2c7288bff3d31.bindTooltip(
`Location: Nothern Colombia
+ Location: Northern Colombia
Magnitude: 5.5
Depth: 150 km
Date: 07/08/2018
@@ -60327,7 +60327,7 @@ Date: 17/07/2023
circle_marker_bd4972581789f5b0f3ff747984c94c88.bindTooltip(
`Location: Luzon, Phillipines.
+ Location: Luzon, Philippines.
Magnitude: 5.4
Depth: 147 km
Date: 06/02/2019
@@ -74710,7 +74710,7 @@ Date: 12/03/2018
circle_marker_2c50281790fd62ab71c40faf5c12f941.bindTooltip(
`Location: 48 km Noth of Swat
+ Location: 48 km North of Swat
Magnitude: 3.7
Depth: 125 km
Date: 13/02/2024
@@ -83621,7 +83621,7 @@ Date: 23/03/2019
circle_marker_fe6485d434e1b775ec411a3c4b6a79e7.bindTooltip(
`Location: New Britian Region, Papua New Guinea
+ Location: New Britain Region, Papua New Guinea
Magnitude: 5.6
Depth: 117 km
Date: 11/06/2024
@@ -84210,7 +84210,7 @@ Date: 30/06/2022
circle_marker_28e33b1f892d6725c6c493384aac3d42.bindTooltip(
`Location: Alaska Penisula
+ Location: Alaska Peninsula
Magnitude: 5.0
Depth: 116 km
Date: 12/11/2016
@@ -86471,7 +86471,7 @@ Date: 26/09/2021
circle_marker_134d4d1018d12ab2bcad25b3cd4015d0.bindTooltip(
`Location: New Britian Region, P.N.G.
+ Location: New Britain Region, P.N.G.
Magnitude: 5.1
Depth: 114 km
Date: 28/11/2018
@@ -88922,7 +88922,7 @@ Date: 11/08/2021
circle_marker_56ec6fcbb0250065dd4f08fa075af32f.bindTooltip(
`Location: Minahassa Penisula Sulawesi
+ Location: Minahassa Peninsula Sulawesi
Magnitude: 5.2
Depth: 112 km
Date: 01/10/2018
@@ -93691,7 +93691,7 @@ Date: 26/12/2017
circle_marker_e95b38cfb2b1827937b0fe757ec72830.bindTooltip(
`Location: New Britian Region, Papua New Guinea
+ Location: New Britain Region, Papua New Guinea
Magnitude: 5.6
Depth: 108 km
Date: 11/06/2024
@@ -95724,7 +95724,7 @@ Date: 09/09/2017
circle_marker_fcc6003720d824096c14f0f4a5601e08.bindTooltip(
`Location: Phillipines Islands Region
+ Location: Philippines Islands Region
Magnitude: 5.3
Depth: 105 km
Date: 18/08/2016
@@ -125136,7 +125136,7 @@ Date: 21/07/2018
circle_marker_91e237b44772cfccb339eae78cdd7320.bindTooltip(
`Location: Hokkaido japan Regon
+ Location: Hokkaido japan Region
Magnitude: 4.3
Depth: 79 km
Date: 12/06/2024
@@ -126314,7 +126314,7 @@ Date: 10/10/2023
circle_marker_29b489c91f9a2669d7b2c92bcd0dd888.bindTooltip(
`Location: Luzon, Phillipines.
+ Location: Luzon, Philippines.
Magnitude: 5.0
Depth: 77 km
Date: 12/01/2019
@@ -126865,7 +126865,7 @@ Date: 05/02/2019
circle_marker_6114d9187c56ee79b4e24cd7a18c6cf6.bindTooltip(
`Location: New Britian Region,P.N.G,
+ Location: New Britain Region,P.N.G,
Magnitude: 5.3
Depth: 76 km
Date: 12/10/2018
@@ -131235,7 +131235,7 @@ Date: 22/10/2023
circle_marker_7e8e63f70b573929fef6817f0b1e4fec.bindTooltip(
`Location: Indian Ocean Tripple Junction.
+ Location: Indian Ocean Triple Junction.
Magnitude: 5.4
Depth: 70 km
Date: 28/09/2018
@@ -131938,7 +131938,7 @@ Date: 13/11/2023
circle_marker_7e1130bedfbcb1e316e980b5e76a7889.bindTooltip(
`Location: Kenia Penisula Alaska
+ Location: Kenia Peninsula Alaska
Magnitude: 5.1
Depth: 70 km
Date: 03/07/2019
@@ -131957,7 +131957,7 @@ Date: 03/07/2019
circle_marker_49e2bc5a52e36bcf9c43f5979b859003.bindTooltip(
`Location: Hindu Kush Region Afganistan
+ Location: Hindu Kush Region Afghanistan
Magnitude: 3.3
Depth: 70 km
Date: 25/10/2016
@@ -139633,7 +139633,7 @@ Date: 10/03/2017
circle_marker_455a3e60c350e538cfdb81f4054d6fef.bindTooltip(
`Location: New Britian Region, P.N.G.
+ Location: New Britain Region, P.N.G.
Magnitude: 5.9
Depth: 59 km
Date: 19/07/2018
@@ -146967,7 +146967,7 @@ Date: 28/02/2018
circle_marker_35675fbfe671c53006c0f7779ebb8f4e.bindTooltip(
`Location: Off Coast of Central Amercia
+ Location: Off Coast of Central America
Magnitude: 4.9
Depth: 49 km
Date: 07/12/2023
@@ -182554,7 +182554,7 @@ Date: 15/12/2021
circle_marker_7bb17ae13746b0b800510d515b5b4909.bindTooltip(
`Location: New Britian Region, P.N.G
+ Location: New Britain Region, P.N.G
Magnitude: 5.9
Depth: 21 km
Date: 07/07/2017
@@ -189242,7 +189242,7 @@ Date: 04/01/2023
circle_marker_f16640b557f18e2fed024a2b5a3c9b37.bindTooltip(
`Location: Off Coast of Central Amercia
+ Location: Off Coast of Central America
Magnitude: 4.6
Depth: 18 km
Date: 15/10/2023
@@ -213847,7 +213847,7 @@ Date: 30/01/2016
circle_marker_dc2b475b700ea494a40df803129cb958.bindTooltip(
`Location: Northen Algeria
+ Location: Northern Algeria
Magnitude: 5.0
Depth: 10 km
Date: 18/11/2016
@@ -215918,7 +215918,7 @@ Date: 01/07/2016
circle_marker_ba7dac355e28b0b0d1dac8ec668eeaa8.bindTooltip(
`Location: Mindanao, Phillippines
+ Location: Mindanao, Philippines
Magnitude: 5.3
Depth: 10 km
Date: 27/09/2017
@@ -218331,7 +218331,7 @@ Date: 30/09/2019
circle_marker_eb9909c5d8a344920854eadcee551462.bindTooltip(
`Location: Sourthern East Pacific Rise.
+ Location: Southern East Pacific Rise.
Magnitude: 5.1
Depth: 10 km
Date: 01/10/2019
@@ -221238,7 +221238,7 @@ Date: 12/11/2019
circle_marker_295a50c46e7d245915334634df29e243.bindTooltip(
`Location: Nothern Molucca Sea
+ Location: Northern Molucca Sea
Magnitude: 4.9
Depth: 10 km
Date: 15/11/2019
@@ -221257,7 +221257,7 @@ Date: 15/11/2019
circle_marker_6ce94a5b7ecc5f8582c5c406fad0c299.bindTooltip(
`Location: Nothern Molucca Sea
+ Location: Northern Molucca Sea
Magnitude: 4.5
Depth: 10 km
Date: 15/11/2019
@@ -221276,7 +221276,7 @@ Date: 15/11/2019
circle_marker_c954c56add1950149b3f9bf7e5f652c0.bindTooltip(
`Location: Nothern Molucca Sea
+ Location: Northern Molucca Sea
Magnitude: 4.5
Depth: 10 km
Date: 15/11/2019
@@ -221314,7 +221314,7 @@ Date: 15/11/2019
circle_marker_be2d0f2e3107117723adadf2288001fa.bindTooltip(
`Location: Nothern Molucca Sea
+ Location: Northern Molucca Sea
Magnitude: 4.5
Depth: 10 km
Date: 15/11/2019
@@ -221352,7 +221352,7 @@ Date: 15/11/2019
circle_marker_f5d722afb6d16ba9905d236c0ebf3803.bindTooltip(
`Location: Nothern Molucca Sea
+ Location: Northern Molucca Sea
Magnitude: 4.9
Depth: 10 km
Date: 15/11/2019
@@ -221409,7 +221409,7 @@ Date: 15/11/2019
circle_marker_3584c7d308c169fd1461902e15512ccb.bindTooltip(
`Location: Nothern Molucca Sea
+ Location: Northern Molucca Sea
Magnitude: 4.5
Depth: 10 km
Date: 15/11/2019
@@ -221599,7 +221599,7 @@ Date: 17/11/2019
circle_marker_8a6c20ff341ac96f8fe375157cb92e2e.bindTooltip(
`Location: Nothern Molucca Sea
+ Location: Northern Molucca Sea
Magnitude: 4.6
Depth: 10 km
Date: 15/11/2019
@@ -221618,7 +221618,7 @@ Date: 15/11/2019
circle_marker_2c9863e43b1acc79f7e031746da2629d.bindTooltip(
`Location: Nothern Molucca Sea
+ Location: Northern Molucca Sea
Magnitude: 4.9
Depth: 10 km
Date: 15/11/2019
@@ -221789,7 +221789,7 @@ Date: 14/11/2019
circle_marker_6dceb28a2ee2b80abe8f9cb4f4c7fd06.bindTooltip(
`Location: Nothern Molucca Sea
+ Location: Northern Molucca Sea
Magnitude: 4.7
Depth: 10 km
Date: 14/11/2019
@@ -222036,7 +222036,7 @@ Date: 31/10/2019
circle_marker_daa9c98171bfa8e0c6e292b011d344b8.bindTooltip(
`Location: Mindanoa Philipines
+ Location: Mindanoa Philippines
Magnitude: 5.0
Depth: 10 km
Date: 31/10/2019
@@ -226121,7 +226121,7 @@ Date: 31/05/2019
circle_marker_afc3b09d3fe1ae2ad1bc2731b7cdffe3.bindTooltip(
`Location: Off west Coast of Northen Sumatra
+ Location: Off west Coast of Northern Sumatra
Magnitude: 4.7
Depth: 10 km
Date: 31/05/2019
@@ -226653,7 +226653,7 @@ Date: 17/06/2019
circle_marker_092733eed7c2a52a5ce85ab3f21302eb.bindTooltip(
`Location: Pacific Antartic Ridge.
+ Location: Pacific Antarctic Ridge.
Magnitude: 5.3
Depth: 10 km
Date: 17/06/2019
@@ -229047,7 +229047,7 @@ Date: 13/07/2019
circle_marker_0c2b4d88a852b723c144e1a3fec60aab.bindTooltip(
`Location: Guatamala
+ Location: Guatemala
Magnitude: 5.2
Depth: 10 km
Date: 14/07/2019
@@ -229427,7 +229427,7 @@ Date: 13/07/2019
circle_marker_5c1adc4e384e3108cba294a9e102a549.bindTooltip(
`Location: Pacific Antartic Ridge.
+ Location: Pacific Antarctic Ridge.
Magnitude: 4.9
Depth: 10 km
Date: 27/07/2019
@@ -235849,7 +235849,7 @@ Date: 19/05/2024
circle_marker_44cc4560fec9dbfa59dd39abd05e4448.bindTooltip(
`Location: Norhern Mid-Atlantic Ridge
+ Location: Northern Mid-Atlantic Ridge
Magnitude: 5.0
Depth: 10 km
Date: 19/05/2024
@@ -244665,7 +244665,7 @@ Date: 30/09/2018
circle_marker_f4de735aae43c860eda68ef00387dd5a.bindTooltip(
`Location: Indian Ocean Tripple Junction.
+ Location: Indian Ocean Triple Junction.
Magnitude: 5.0
Depth: 10 km
Date: 01/10/2018
@@ -244684,7 +244684,7 @@ Date: 01/10/2018
circle_marker_f3fadb6a8b7b7bcb35ac5bdc3fb1ca4d.bindTooltip(
`Location: Indian Ocean Tripple Junction.
+ Location: Indian Ocean Triple Junction.
Magnitude: 5.4
Depth: 10 km
Date: 01/10/2018
@@ -245140,7 +245140,7 @@ Date: 28/09/2018
circle_marker_96c2a9d46f08aca6f0ee716b073383b7.bindTooltip(
`Location: Indian Ocean Tripple Junction.
+ Location: Indian Ocean Triple Junction.
Magnitude: 5.6
Depth: 10 km
Date: 28/09/2018
@@ -245216,7 +245216,7 @@ Date: 28/09/2018
circle_marker_7a164a1ba71cd7be584c72879de53fcd.bindTooltip(
`Location: Minahassa Penisula Sulawesi
+ Location: Minahassa Peninsula Sulawesi
Magnitude: 5.6
Depth: 10 km
Date: 28/09/2018
@@ -245254,7 +245254,7 @@ Date: 29/09/2018
circle_marker_ab6cc4300510f280aa28f6d1a7761f61.bindTooltip(
`Location: Minahassa Penisula Sulawesi
+ Location: Minahassa Peninsula Sulawesi
Magnitude: 5.8
Depth: 10 km
Date: 28/09/2018
@@ -245311,7 +245311,7 @@ Date: 28/09/2018
circle_marker_a75b089a522df23b0b7cb6145215d157.bindTooltip(
`Location: Minahassa Penisula Sulawesi
+ Location: Minahassa Peninsula Sulawesi
Magnitude: 4.8
Depth: 10 km
Date: 28/09/2018
@@ -245330,7 +245330,7 @@ Date: 28/09/2018
circle_marker_ccb3a8d48a7cac634a8a14fbf6877947.bindTooltip(
`Location: Minahassa Penisula Sulawesi
+ Location: Minahassa Peninsula Sulawesi
Magnitude: 5.7
Depth: 10 km
Date: 28/09/2018
@@ -245349,7 +245349,7 @@ Date: 28/09/2018
circle_marker_69d89e2fc430bf5d593dd100610a3f10.bindTooltip(
`Location: Minahassa Penisula Sulawesi
+ Location: Minahassa Peninsula Sulawesi
Magnitude: 5.4
Depth: 10 km
Date: 28/09/2018
@@ -245368,7 +245368,7 @@ Date: 28/09/2018
circle_marker_7d69acef397282c788bb63cbd328708c.bindTooltip(
`Location: Minahassa Penisula Sulawesi
+ Location: Minahassa Peninsula Sulawesi
Magnitude: 4.9
Depth: 10 km
Date: 28/09/2018
@@ -248389,7 +248389,7 @@ Date: 02/12/2018
circle_marker_ce74923be01e89bc6c658f180d3e3006.bindTooltip(
`Location: Carribean Sea
+ Location: Caribbean Sea
Magnitude: 5.4
Depth: 10 km
Date: 25/11/2018
@@ -248788,7 +248788,7 @@ Date: 25/11/2018
circle_marker_7035afc1f0a14a98a2bb5b2f21a59fa7.bindTooltip(
`Location: Carribean Sea.
+ Location: Caribbean Sea.
Magnitude: 5.0
Depth: 10 km
Date: 25/11/2018
@@ -249377,7 +249377,7 @@ Date: 03/12/2018
circle_marker_f8546a247d0f7eef3ac806b002fe6cb0.bindTooltip(
`Location: Norhern Molucca Sea
+ Location: Northern Molucca Sea
Magnitude: 5.4
Depth: 10 km
Date: 04/12/2018
@@ -250023,7 +250023,7 @@ Date: 02/11/2018
circle_marker_635107bbeef8fab73af78a074d94a04c.bindTooltip(
`Location: Minahassa Penisula Sulawesi
+ Location: Minahassa Peninsula Sulawesi
Magnitude: 4.9
Depth: 10 km
Date: 02/11/2018
@@ -257338,7 +257338,7 @@ Date: 06/07/2018
circle_marker_a7803575da3f3002144699377ed1c744.bindTooltip(
`Location: Western Indian Antartic Ridge
+ Location: Western Indian Antarctic Ridge
Magnitude: 5.1
Depth: 10 km
Date: 30/06/2018
@@ -264083,7 +264083,7 @@ Date: 12/04/2019
circle_marker_b6e9cddbd4880827fbf51eb75b0b7f23.bindTooltip(
`Location: Nothern Mid Atlantic Ridge
+ Location: Northern Mid Atlantic Ridge
Magnitude: 4.7
Depth: 10 km
Date: 12/04/2019
@@ -264634,7 +264634,7 @@ Date: 08/04/2019
circle_marker_03769a079a0eb1c311bcc9b159992ee9.bindTooltip(
`Location: Off Coast of Central Amercia
+ Location: Off Coast of Central America
Magnitude: 4.8
Depth: 10 km
Date: 08/04/2019
@@ -265451,7 +265451,7 @@ Date: 15/04/2019
circle_marker_23583d2429ce845342981e0c34697e22.bindTooltip(
`Location: Off Coast of Central Amercia
+ Location: Off Coast of Central America
Magnitude: 4.8
Depth: 10 km
Date: 16/04/2019
@@ -266876,7 +266876,7 @@ Date: 26/01/2019
circle_marker_ee96e2c1e79360a8d6fcc9cdab5f642a.bindTooltip(
`Location: Off west Coast of Northen Sumatra
+ Location: Off west Coast of Northern Sumatra
Magnitude: 4.8
Depth: 10 km
Date: 27/01/2019
@@ -268605,7 +268605,7 @@ Date: 03/01/2019
circle_marker_5e905ee26138e363b1b8dc3faf4555e2.bindTooltip(
`Location: Northen Molucca Sea
+ Location: Northern Molucca Sea
Magnitude: 5.5
Depth: 10 km
Date: 03/01/2019
@@ -270144,7 +270144,7 @@ Date: 04/02/2019
circle_marker_ed0c9aea45159345713dc597ce0fc8d6.bindTooltip(
`Location: Luzon, Phillipines.
+ Location: Luzon, Philippines.
Magnitude: 5.2
Depth: 10 km
Date: 04/02/2019
diff --git a/static/interactiveCharts/593-customize-bubble-map-with-folium-3.html b/static/interactiveCharts/593-customize-bubble-map-with-folium-3.html
index a5c06d89ed..612c86e4bf 100644
--- a/static/interactiveCharts/593-customize-bubble-map-with-folium-3.html
+++ b/static/interactiveCharts/593-customize-bubble-map-with-folium-3.html
@@ -57466,7 +57466,7 @@ Date: 10/11/2018
circle_marker_295a975373598cfa03903aaa2280ae2e.bindTooltip(
`Location: Nothern Colombia
+ Location: Northern Colombia
Magnitude: 5.5
Depth: 150 km
Date: 07/08/2018
@@ -60335,7 +60335,7 @@ Date: 17/07/2023
circle_marker_1dba488d21a924fcf76c90abd45a1ace.bindTooltip(
`Location: Luzon, Phillipines.
+ Location: Luzon, Philippines.
Magnitude: 5.4
Depth: 147 km
Date: 06/02/2019
@@ -74718,7 +74718,7 @@ Date: 12/03/2018
circle_marker_3636ca71cf1f3478fac037263516397d.bindTooltip(
`Location: 48 km Noth of Swat
+ Location: 48 km North of Swat
Magnitude: 3.7
Depth: 125 km
Date: 13/02/2024
@@ -83629,7 +83629,7 @@ Date: 23/03/2019
circle_marker_0dad5d2f44d7d194e084d8f667b710bd.bindTooltip(
`Location: New Britian Region, Papua New Guinea
+ Location: New Britain Region, Papua New Guinea
Magnitude: 5.6
Depth: 117 km
Date: 11/06/2024
@@ -84218,7 +84218,7 @@ Date: 30/06/2022
circle_marker_54a4a8cd7ffffc1ee09a703d6963b465.bindTooltip(
`Location: Alaska Penisula
+ Location: Alaska Peninsula
Magnitude: 5.0
Depth: 116 km
Date: 12/11/2016
@@ -86479,7 +86479,7 @@ Date: 26/09/2021
circle_marker_cf6c9e849ef6ff78d15f68f824cca495.bindTooltip(
`Location: New Britian Region, P.N.G.
+ Location: New Britain Region, P.N.G.
Magnitude: 5.1
Depth: 114 km
Date: 28/11/2018
@@ -88930,7 +88930,7 @@ Date: 11/08/2021
circle_marker_357f68fc8e7b5306f6dc49856bbc00c4.bindTooltip(
`Location: Minahassa Penisula Sulawesi
+ Location: Minahassa Peninsula Sulawesi
Magnitude: 5.2
Depth: 112 km
Date: 01/10/2018
@@ -93699,7 +93699,7 @@ Date: 26/12/2017
circle_marker_1bec85c592e2975c496f96d227e44c70.bindTooltip(
`Location: New Britian Region, Papua New Guinea
+ Location: New Britain Region, Papua New Guinea
Magnitude: 5.6
Depth: 108 km
Date: 11/06/2024
@@ -95732,7 +95732,7 @@ Date: 09/09/2017
circle_marker_652e6ff36f2953b59d485baa72368d1c.bindTooltip(
`Location: Phillipines Islands Region
+ Location: Philippines Islands Region
Magnitude: 5.3
Depth: 105 km
Date: 18/08/2016
@@ -125144,7 +125144,7 @@ Date: 21/07/2018
circle_marker_17cd1634b1963b7c6563f838b4801c7a.bindTooltip(
`Location: Hokkaido japan Regon
+ Location: Hokkaido japan Region
Magnitude: 4.3
Depth: 79 km
Date: 12/06/2024
@@ -126322,7 +126322,7 @@ Date: 10/10/2023
circle_marker_d7923b706568b65fb023705043dfd64b.bindTooltip(
`Location: Luzon, Phillipines.
+ Location: Luzon, Philippines.
Magnitude: 5.0
Depth: 77 km
Date: 12/01/2019
@@ -126873,7 +126873,7 @@ Date: 05/02/2019
circle_marker_48c8e04b70f9e0a9f9cc3dcc87e7c002.bindTooltip(
`Location: New Britian Region,P.N.G,
+ Location: New Britain Region,P.N.G,
Magnitude: 5.3
Depth: 76 km
Date: 12/10/2018
@@ -131243,7 +131243,7 @@ Date: 22/10/2023
circle_marker_e5d7f49229562176b1ce05b0ea40daa5.bindTooltip(
`Location: Indian Ocean Tripple Junction.
+ Location: Indian Ocean Triple Junction.
Magnitude: 5.4
Depth: 70 km
Date: 28/09/2018
@@ -131946,7 +131946,7 @@ Date: 13/11/2023
circle_marker_f21c69b2ba93e03f44130720686bd44d.bindTooltip(
`Location: Kenia Penisula Alaska
+ Location: Kenia Peninsula Alaska
Magnitude: 5.1
Depth: 70 km
Date: 03/07/2019
@@ -131965,7 +131965,7 @@ Date: 03/07/2019
circle_marker_34b030ee41384b1563e7893642bd7ce1.bindTooltip(
`Location: Hindu Kush Region Afganistan
+ Location: Hindu Kush Region Afghanistan
Magnitude: 3.3
Depth: 70 km
Date: 25/10/2016
@@ -139641,7 +139641,7 @@ Date: 10/03/2017
circle_marker_6e0f3de42a2abc1e0b78ce697e38c18b.bindTooltip(
`Location: New Britian Region, P.N.G.
+ Location: New Britain Region, P.N.G.
Magnitude: 5.9
Depth: 59 km
Date: 19/07/2018
@@ -146975,7 +146975,7 @@ Date: 28/02/2018
circle_marker_331433839542170fd207234c5e2ddf7a.bindTooltip(
`Location: Off Coast of Central Amercia
+ Location: Off Coast of Central America
Magnitude: 4.9
Depth: 49 km
Date: 07/12/2023
@@ -182562,7 +182562,7 @@ Date: 15/12/2021
circle_marker_3619381f08d0b2e68413206d54544579.bindTooltip(
`Location: New Britian Region, P.N.G
+ Location: New Britain Region, P.N.G
Magnitude: 5.9
Depth: 21 km
Date: 07/07/2017
@@ -189250,7 +189250,7 @@ Date: 04/01/2023
circle_marker_5a75d70d6cc436f2706e036d061f5614.bindTooltip(
`Location: Off Coast of Central Amercia
+ Location: Off Coast of Central America
Magnitude: 4.6
Depth: 18 km
Date: 15/10/2023
@@ -213855,7 +213855,7 @@ Date: 30/01/2016
circle_marker_4ab3997f5ab90ce29b19b1fc695a4683.bindTooltip(
`Location: Northen Algeria
+ Location: Northern Algeria
Magnitude: 5.0
Depth: 10 km
Date: 18/11/2016
@@ -215926,7 +215926,7 @@ Date: 01/07/2016
circle_marker_44d5f15b0b48017549476877176838c8.bindTooltip(
`Location: Mindanao, Phillippines
+ Location: Mindanao, Philippines
Magnitude: 5.3
Depth: 10 km
Date: 27/09/2017
@@ -218339,7 +218339,7 @@ Date: 30/09/2019
circle_marker_9ffbdd22061b514435ba24766b7a48c3.bindTooltip(
`Location: Sourthern East Pacific Rise.
+ Location: Southern East Pacific Rise.
Magnitude: 5.1
Depth: 10 km
Date: 01/10/2019
@@ -221246,7 +221246,7 @@ Date: 12/11/2019
circle_marker_15c945a493580363fb62b47526a4be99.bindTooltip(
`Location: Nothern Molucca Sea
+ Location: Northern Molucca Sea
Magnitude: 4.9
Depth: 10 km
Date: 15/11/2019
@@ -221265,7 +221265,7 @@ Date: 15/11/2019
circle_marker_94124eb5e8560d9997045b767cdf9f7f.bindTooltip(
`Location: Nothern Molucca Sea
+ Location: Northern Molucca Sea
Magnitude: 4.5
Depth: 10 km
Date: 15/11/2019
@@ -221284,7 +221284,7 @@ Date: 15/11/2019
circle_marker_3c376ae07c9174b773f19229f98639c6.bindTooltip(
`Location: Nothern Molucca Sea
+ Location: Northern Molucca Sea
Magnitude: 4.5
Depth: 10 km
Date: 15/11/2019
@@ -221322,7 +221322,7 @@ Date: 15/11/2019
circle_marker_55242cdbaba38a3ea592b70ab83148dc.bindTooltip(
`Location: Nothern Molucca Sea
+ Location: Northern Molucca Sea
Magnitude: 4.5
Depth: 10 km
Date: 15/11/2019
@@ -221360,7 +221360,7 @@ Date: 15/11/2019
circle_marker_6d882db166eb6c78114e4bd887171fca.bindTooltip(
`Location: Nothern Molucca Sea
+ Location: Northern Molucca Sea
Magnitude: 4.9
Depth: 10 km
Date: 15/11/2019
@@ -221417,7 +221417,7 @@ Date: 15/11/2019
circle_marker_642abe848f5ef2a48dc0b3ca0b50c0d4.bindTooltip(
`Location: Nothern Molucca Sea
+ Location: Northern Molucca Sea
Magnitude: 4.5
Depth: 10 km
Date: 15/11/2019
@@ -221607,7 +221607,7 @@ Date: 17/11/2019
circle_marker_15860e29641e4e1a173b411a87a7a12f.bindTooltip(
`Location: Nothern Molucca Sea
+ Location: Northern Molucca Sea
Magnitude: 4.6
Depth: 10 km
Date: 15/11/2019
@@ -221626,7 +221626,7 @@ Date: 15/11/2019
circle_marker_e49972e3a8491b5654aef7f8225a3c3f.bindTooltip(
`Location: Nothern Molucca Sea
+ Location: Northern Molucca Sea
Magnitude: 4.9
Depth: 10 km
Date: 15/11/2019
@@ -221797,7 +221797,7 @@ Date: 14/11/2019
circle_marker_21f36103e92fa3a2832316844f9764a1.bindTooltip(
`Location: Nothern Molucca Sea
+ Location: Northern Molucca Sea
Magnitude: 4.7
Depth: 10 km
Date: 14/11/2019
@@ -222044,7 +222044,7 @@ Date: 31/10/2019
circle_marker_62e7d3ea3badd31814b87b73207e6177.bindTooltip(
`Location: Mindanoa Philipines
+ Location: Mindanoa Philippines
Magnitude: 5.0
Depth: 10 km
Date: 31/10/2019
@@ -226129,7 +226129,7 @@ Date: 31/05/2019
circle_marker_bd56dfd802c01e970b470831a73d94e5.bindTooltip(
`Location: Off west Coast of Northen Sumatra
+ Location: Off west Coast of Northern Sumatra
Magnitude: 4.7
Depth: 10 km
Date: 31/05/2019
@@ -226661,7 +226661,7 @@ Date: 17/06/2019
circle_marker_c6d009dc78c5277838383cde25c67338.bindTooltip(
`Location: Pacific Antartic Ridge.
+ Location: Pacific Antarctic Ridge.
Magnitude: 5.3
Depth: 10 km
Date: 17/06/2019
@@ -229055,7 +229055,7 @@ Date: 13/07/2019
circle_marker_3dc66a71bd090c6eb9addb6a68a6a3bb.bindTooltip(
`Location: Guatamala
+ Location: Guatemala
Magnitude: 5.2
Depth: 10 km
Date: 14/07/2019
@@ -229435,7 +229435,7 @@ Date: 13/07/2019
circle_marker_4d4c453e8f324a2bdfca2f766d990393.bindTooltip(
`Location: Pacific Antartic Ridge.
+ Location: Pacific Antarctic Ridge.
Magnitude: 4.9
Depth: 10 km
Date: 27/07/2019
@@ -235857,7 +235857,7 @@ Date: 19/05/2024
circle_marker_a60ad587f4389b28c88254c26174afbf.bindTooltip(
`Location: Norhern Mid-Atlantic Ridge
+ Location: Northern Mid-Atlantic Ridge
Magnitude: 5.0
Depth: 10 km
Date: 19/05/2024
@@ -244673,7 +244673,7 @@ Date: 30/09/2018
circle_marker_573a6fc373db770b418c2075fed76eeb.bindTooltip(
`Location: Indian Ocean Tripple Junction.
+ Location: Indian Ocean Triple Junction.
Magnitude: 5.0
Depth: 10 km
Date: 01/10/2018
@@ -244692,7 +244692,7 @@ Date: 01/10/2018
circle_marker_e79020024b986f8433bc8c357beeb13c.bindTooltip(
`Location: Indian Ocean Tripple Junction.
+ Location: Indian Ocean Triple Junction.
Magnitude: 5.4
Depth: 10 km
Date: 01/10/2018
@@ -245148,7 +245148,7 @@ Date: 28/09/2018
circle_marker_bb617e5668fda21c5343c635b45076f8.bindTooltip(
`Location: Indian Ocean Tripple Junction.
+ Location: Indian Ocean Triple Junction.
Magnitude: 5.6
Depth: 10 km
Date: 28/09/2018
@@ -245224,7 +245224,7 @@ Date: 28/09/2018
circle_marker_f19761f58ff5c23ea9320c8d4bd576e6.bindTooltip(
`Location: Minahassa Penisula Sulawesi
+ Location: Minahassa Peninsula Sulawesi
Magnitude: 5.6
Depth: 10 km
Date: 28/09/2018
@@ -245262,7 +245262,7 @@ Date: 29/09/2018
circle_marker_85c7c496dea7f1b2d3a4911eb23d4809.bindTooltip(
`Location: Minahassa Penisula Sulawesi
+ Location: Minahassa Peninsula Sulawesi
Magnitude: 5.8
Depth: 10 km
Date: 28/09/2018
@@ -245319,7 +245319,7 @@ Date: 28/09/2018
circle_marker_3a09ae4e17d615b79500861fc170c4b8.bindTooltip(
`Location: Minahassa Penisula Sulawesi
+ Location: Minahassa Peninsula Sulawesi
Magnitude: 4.8
Depth: 10 km
Date: 28/09/2018
@@ -245338,7 +245338,7 @@ Date: 28/09/2018
circle_marker_3d300d27c33b95d7c28753da0a562708.bindTooltip(
`Location: Minahassa Penisula Sulawesi
+ Location: Minahassa Peninsula Sulawesi
Magnitude: 5.7
Depth: 10 km
Date: 28/09/2018
@@ -245357,7 +245357,7 @@ Date: 28/09/2018
circle_marker_4e2758998f6a5f5421373d9c47c1f447.bindTooltip(
`Location: Minahassa Penisula Sulawesi
+ Location: Minahassa Peninsula Sulawesi
Magnitude: 5.4
Depth: 10 km
Date: 28/09/2018
@@ -245376,7 +245376,7 @@ Date: 28/09/2018
circle_marker_8ea0e132e8cb13bd41308a6c99df40b8.bindTooltip(
`Location: Minahassa Penisula Sulawesi
+ Location: Minahassa Peninsula Sulawesi
Magnitude: 4.9
Depth: 10 km
Date: 28/09/2018
@@ -248397,7 +248397,7 @@ Date: 02/12/2018
circle_marker_5394c7ae7bdea84589aafd1b5b604282.bindTooltip(
`Location: Carribean Sea
+ Location: Caribbean Sea
Magnitude: 5.4
Depth: 10 km
Date: 25/11/2018
@@ -248796,7 +248796,7 @@ Date: 25/11/2018
circle_marker_107c7b4e51d700616b24750c2f23c6b6.bindTooltip(
`Location: Carribean Sea.
+ Location: Caribbean Sea.
Magnitude: 5.0
Depth: 10 km
Date: 25/11/2018
@@ -249385,7 +249385,7 @@ Date: 03/12/2018
circle_marker_7d9608c73dec4adbcb96945c29f60af2.bindTooltip(
`Location: Norhern Molucca Sea
+ Location: Northern Molucca Sea
Magnitude: 5.4
Depth: 10 km
Date: 04/12/2018
@@ -250031,7 +250031,7 @@ Date: 02/11/2018
circle_marker_ca07bffe1222ffe91971b8d3ccfc06ae.bindTooltip(
`Location: Minahassa Penisula Sulawesi
+ Location: Minahassa Peninsula Sulawesi
Magnitude: 4.9
Depth: 10 km
Date: 02/11/2018
@@ -257346,7 +257346,7 @@ Date: 06/07/2018
circle_marker_35d94a328574f138bc4e93a9ec65c595.bindTooltip(
`Location: Western Indian Antartic Ridge
+ Location: Western Indian Antarctic Ridge
Magnitude: 5.1
Depth: 10 km
Date: 30/06/2018
@@ -264091,7 +264091,7 @@ Date: 12/04/2019
circle_marker_54516d658c0bb9242bc6b49adbb93891.bindTooltip(
`Location: Nothern Mid Atlantic Ridge
+ Location: Northern Mid Atlantic Ridge
Magnitude: 4.7
Depth: 10 km
Date: 12/04/2019
@@ -264642,7 +264642,7 @@ Date: 08/04/2019
circle_marker_84aa2b6c7bb74127b249b2bb74580fb8.bindTooltip(
`Location: Off Coast of Central Amercia
+ Location: Off Coast of Central America
Magnitude: 4.8
Depth: 10 km
Date: 08/04/2019
@@ -265459,7 +265459,7 @@ Date: 15/04/2019
circle_marker_02b5ff40b383c09552e09e6ae51593b3.bindTooltip(
`Location: Off Coast of Central Amercia
+ Location: Off Coast of Central America
Magnitude: 4.8
Depth: 10 km
Date: 16/04/2019
@@ -266884,7 +266884,7 @@ Date: 26/01/2019
circle_marker_c96bd5e4bb04777c731387732f4166e1.bindTooltip(
`Location: Off west Coast of Northen Sumatra
+ Location: Off west Coast of Northern Sumatra
Magnitude: 4.8
Depth: 10 km
Date: 27/01/2019
@@ -268613,7 +268613,7 @@ Date: 03/01/2019
circle_marker_92753e0eaaa0d4b345e9c74aed3d7f6b.bindTooltip(
`Location: Northen Molucca Sea
+ Location: Northern Molucca Sea
Magnitude: 5.5
Depth: 10 km
Date: 03/01/2019
@@ -270152,7 +270152,7 @@ Date: 04/02/2019
circle_marker_0fb2f23e53b13ef399f8b0d7415a9846.bindTooltip(
`Location: Luzon, Phillipines.
+ Location: Luzon, Philippines.
Magnitude: 5.2
Depth: 10 km
Date: 04/02/2019