avatarAvi Kotzer

Free AI web copilot to create summaries, insights and extended knowledge, download it at here

3215

Abstract

ocoding service.</p><figure id="9368"><img src="https://cdn-images-1.readmedium.com/v2/resize:fit:800/1*Yn7t0g2zEvN7QG2DPKVhng.png"><figcaption></figcaption></figure><p id="afa7">4. <code>geolocator</code>: This variable is the geolocator object we previously defined, linked to the Nominatim geocoder from Geopy.</p><p id="3a73"><code>- .geocode("Lonavala, Pune")</code>: This method is called on the geolocator object. It takes a location name, in this case, "Lonavala, Pune," as its argument.</p><ul><li>The geocode method sends a request to a geocoding service, which, in this instance, is Nominatim. It translates the human-readable location, “Lonavala, Pune,” into specific geographic coordinates (latitude and longitude).</li><li>The resulting information, including the coordinates and additional location details, is stored in the variable <code>location</code> for further use in your Python script</li></ul><figure id="25da"><img src="https://cdn-images-1.readmedium.com/v2/resize:fit:800/1*AZ8tvHiXzfkbXeJh60jpaw.png"><figcaption></figcaption></figure><figure id="517f"><img src="https://cdn-images-1.readmedium.com/v2/resize:fit:800/1*G92yRMgr941wZz7QXQMwFQ.png"><figcaption></figcaption></figure><figure id="7445"><img src="https://cdn-images-1.readmedium.com/v2/resize:fit:800/1*PbUgjYhH79tmD3PKjv_rmw.png"><figcaption></figcaption></figure><figure id="5381"><img src="https://cdn-images-1.readmedium.com/v2/resize:fit:800/1*CS8vn2LGhOjVPjNYsHlSJg.png"><figcaption></figcaption></figure><ol><li><code>map</code>: This variable is assigned to hold the map object that we're creating with Folium.</li><li><code>folium.Map()</code>: This function is used to create a new map instance. It's a part of the Folium library.</li><li><code>location=[18.760583, 73.3821481]</code>: Here, we specify the initial center point of the map using latitude and longitude coordinates. In this example, it's set to the coordinates for Lonavala, Pune.</li><li><code>zoom_start=13</code>: This parameter sets the initial zoom level of the map. A higher value like 13 means a more detailed, close-up view of the map.</li></ol><figure id="c6bd"><img src="https://cdn-images-1.readmedium.com/v2/resize:fit:800/1*ixRdo8j60Q2O7oYbQX0NqA.png"><figcaption></figcaption></figure><ol><li><code>mylocation</code>: This variable is used to store the marker object that we're creating with Folium.</li><li><code>folium.Marker(point, popup='My City', icon=folium.Icon())</code>: Here, we create a marker on the map. The <code>point</code> variable specifies the location, 'My City' is the text that appears when you click on the marker (the popup), and <code>icon=folium.Icon()</code> determines the marker's visual style.</li><li><code>.add_to(map)</code>: This method attaches the marker we've created to the previously defined <code>map</code>, so it appears on the map.</li></ol><figure id="8130"><img src="https://cdn-images-1.readmedium.com/v2/resize:fit:800/1*CCh9Vn_9qsYbMWVZn5Ni_A.png"><figcaption></figcaption></figure><ol><li><code>mylocation</code>: This is the variable that represents the marker we added to the Folium map.</li><li><code>.save("mylocation.html")</code>: This method is called on the marker object. It in

Options

structs Folium to save the map and its contents, including the marker, as an HTML file.</li><li><code>"mylocation.html"</code>: This is the name of the file where the map will be saved. You can choose any filename you prefer.</li></ol><figure id="52e1"><img src="https://cdn-images-1.readmedium.com/v2/resize:fit:800/1*fdpfsA_B1JibBjUA9fNb9A.png"><figcaption></figcaption></figure><figure id="f2d2"><img src="https://cdn-images-1.readmedium.com/v2/resize:fit:800/1*r7N-WR59GERGsxcMyduL0Q.png"><figcaption></figcaption></figure><figure id="e65b"><img src="https://cdn-images-1.readmedium.com/v2/resize:fit:800/1*Ln6uXSIsZcHv15MbCw3cOw.png"><figcaption></figcaption></figure><figure id="355a"><img src="https://cdn-images-1.readmedium.com/v2/resize:fit:800/1*Pxg3rVVjCk1zbwGXsfZaIg.png"><figcaption></figcaption></figure><figure id="12b3"><img src="https://cdn-images-1.readmedium.com/v2/resize:fit:800/1*OAIb8OWlDG8IdowQFBYCVA.png"><figcaption></figcaption></figure><p id="0cca">For more detailed documentation of geopy library visit:</p><div id="81d0" class="link-block"> <a href="https://geopy.readthedocs.io/en/stable/"> <div> <div> <h2>Welcome to GeoPy's documentation! - GeoPy 2.4.0 documentation</h2> <div><h3>geopy is a Python client for several popular geocoding web services. geopy makes it easy for Python developers to…</h3></div> <div><p>geopy.readthedocs.io</p></div> </div> <div> <div style="background-image: url(https://miro.readmedium.com/v2/resize:fit:320/0*OKUTEDjcvXqNIc0A)"></div> </div> </div> </a> </div><p id="a4b7">For more detailed documentation of folium library:</p><div id="6923" class="link-block"> <a href="https://www.geeksforgeeks.org/visualizing-geospatial-data-using-folium-in-python/"> <div> <div> <h2>Visualizing Geospatial Data using Folium in Python - GeeksforGeeks</h2> <div><h3>A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and…</h3></div> <div><p>www.geeksforgeeks.org</p></div> </div> <div> <div style="background-image: url(https://miro.readmedium.com/v2/resize:fit:320/0*nLNO4oAugwdYeDJ1)"></div> </div> </div> </a> </div><p id="60cf">Github link for this demonstartion:</p><div id="0a71" class="link-block"> <a href="https://github.com/Vaishnavi639/geopy-folium-libraries"> <div> <div> <h2>GitHub - Vaishnavi639/geopy-folium-libraries</h2> <div><h3>Contribute to Vaishnavi639/geopy-folium-libraries development by creating an account on GitHub.</h3></div> <div><p>github.com</p></div> </div> <div> <div style="background-image: url(https://miro.readmedium.com/v2/resize:fit:320/0*aYuXuIVi5kaH2eeM)"></div> </div> </div> </a> </div><p id="ca22">Thank you for reading!!!</p></article></body>

Rabato / Robata

Not really a case of tomay-to, tomah-to

Screenshotted by Iva Reztok

Today’s New York Times Spelling Bee letters:

Art: Iva Reztok

A, B, H, M, R, T, and center O (all words must include O)

Merriam-Webster says…

Credit: merriam-webster.com

Silly little dictionary! Don’t you know that rabato can’t possibly be a word if the New York Times says it ain’t?

For further fascinating facts, check out the Spelling Bee Master.

What’s your favorite dord* from today’s puzzle?

My Two Cents

We have a trifecta of words today, although only two appear in the title. The third one is hinted at in the photo, although you could be forgiven for not “getting” the reference. It’s almost forty years old!

Vintage fashion

Rabato is a modification of the Middle French rabat, meaning “turndown collar”, itself from rabattre, “to turn back down”. Which is related to the term rebate that companies gave hoping you’d forget to mail in the coupon.

This wide collar often frilled with lace was designed to stand up at the back of the head. It was worn by both men and women in the 16th and early 17th centuries as an item of high fashion. Of course it was, coming from the French!

The rabato could be turned downwards, or “turned back”, and used as a base for a ruff, the crimped collar that you typically see in paintings of that era. This was more popular in the earlier 16th century and started disappearing in the first half of the 17th.

Credit: wikipedia.com

The above is the Darnley Portrait of Queen Elizabeth I, painted around 1575, showing her with a ruff.

In this one, below, we can see her with a rabato.

Credit: wikipedia.com

And I think this one is a rabato, too:

Surprise! Wikipedia takes credit again!

The rabato had some offshoots, like the smaller rabat collar and the rabatine collar, which was used as a short cape.

That’s about all I could find about this 400+-year-old article of clothing.

The lesser-known Japanese grill

Robata is short for robatayaki, a Japanese term meaning “fireside grilling”. Neither robatayaki nor its shortened form appears in Merriam-Webster or dictionary.com. So I can’t tease them about including a word that the New York times does not accept.

Robata originated in northern Japan, where fishermen would grill seafood over a communal charcoal hearth, called irori, which also served to keep them warm. Later the system was adapted into stone boxes so that the fishermen could safely cook food on their boats. Soon this became popular all over the country and restaurants started opening.

Even in restaurants the grill is sometimes set up in a central position around which the diners sit. This can be done as a sandpit hearth or level with the bar or table, as shown below.

Photo by Schellack

I do not recommend wearing blindfolds like the people in the photo are doing. Doing so while cooking or eating robata makes it much more challenging… and potentially dangerous.

If the second half of the word robatayaki sounds familiar, it’s because yaki is used in other terms related to Japanese cuisine. There is teriyaki, or “grilled shiny” (in reference to the glaze brushed on the food), kushiyaki —skewered meats that are grilled — , and teppanyaki, meaning “grilled on a metal plate”. The latter is also popularly known as hibachi grilling.

Kilroy was here

In February of 1983 the rock band Styx released their eleventh studio album, titled Kilroy Was Here. The name was a reference to the iconic World War II graffiti purportedly scribbled all over Europe, accompanied by this doodle:

There are several disputed origin stories to this “meme before memes”, including one explaining how he may have been derived from the Australian expression “Foo was here” used in World War I.

Styx and other bands had been targeted by certain Christian religious groups for “backward masking” (secretly hiding satanic messages that could be heard when playing the vinyl record backward). This rock-opera-ish album was the band’s response to that.

In a short movie connected to the record’s live show, a demagogue named Dr. Righteous turns his own cable network into a potent political base. Hmmm… pretty spot-on critique of the future, considering this was done almost 40 years ago. Dr. Righteous eventually manages to ban rock in the United States.

The main character of the album is Robert Orin Charles Kilroy (R.O.C.K.). He is falsely accused of murder and imprisoned. In jail he meets an underground leader who helps him escape.

Four music videos were made for the album (MTV had launched not two years before — and actually played music back then). Because they were shot at the same time as the mini-film, they incorporated some footage from it. One of those music videos was for the song “Mr. Roboto”, which was also released as a single.

“Mr. Roboto” was not the most popular single from Kilroy Was Here, it became one of the band’s signature songs. According to some pop culture experts, it brought the phrases “domo arigato” and “domo arigato, Mr. Roboto” into the American vernacular. That’s because the song’s beginning lyrics are in Japanese,

どうもありがとうミスターロボット (Dōmo arigatō misutā robotto) また会う日まで (Mata au hi made) どうもありがとうミスターロボット (Dōmo arigatō misutā robotto) 秘密を知りたい (Himitsu o shiritai)

which translates to…

Thank you very much, Mr. Roboto. Until the day we meet again Thank you very much, Mr. Roboto, I want to know your secret.

I remember being fascinated by both the song and the video. I had heard of “arigato” before, but not “domo”. The video was hauntingly cryptic to me. Or cryptically haunting. Most likely because I didn’t get to hear the whole album or see that short movie the band made.

Understandably, Mr. Roboto — even without the “Mr.” — cannot be on the list of valid words for today’s Spelling Bee game. Strike one! And robata? Nope, not in the dictionary. Strike two! How about robata, which is in the dictionary? Strike three! We’re out! This trifecta paid zero dividends. Zilch. Nada. That’s because the editors of the New York Times decided that rabato and robata are dords.*

You can check out my previous entry on another dord* here:

*What the heck is a dord, you ask? Here’s the answer:

Spelling Bee
Language
Food
Fashion
Music
Recommended from ReadMedium