Trending

#tmap

Latest posts tagged with #tmap on Bluesky

Latest Top
Trending

Posts tagged #tmap

Preview
티맵모빌리티 공식 블로그 : 네이버 블로그

T-Map will celebrate the March 1st Independence Movement anniversary by letting you change your map navigation car icon to what appears to be activist 유관순 (Yu Gwan-sun) driving a convertible. #3-1운동 #유관순 #티맵 #태극기 #🇰🇷 #삼일절 #TMap
Via: blog.naver.com/tmapmobility...

0 0 1 0
Post image

Last Call! Applications for the Technology Management Advancement Program (TMAP) close February 1st!

We especially encourage women, people of color, and professionals from underrepresented groups in K–12 IT to apply.

Apply now at cite.org/TMAP!
#CITE_EDU #k12 #edtech #TMAP

0 0 0 0
Video

Ready to elevate your leadership and expand your impact in K–12 technology?
TMAP empowers aspiring and current IT leaders to strengthen their skills in technology, management, and leadership.

Apply today: https://www.cite.org/tmap

#CITE_EDU #k12sysadmin #edtech #technology #TMAP

0 0 0 0
Post image

Applications for the 2025 Spring TMAP Program are now open!
Grow your leadership in K–12 technology—and this year, the CITE Foundation is offering one TMAP scholarship to support your journey.
Apply today: https://www.cite.org/tmap
#CITE_EDU #k12sysadmin #edtech #technology #TMAP

1 0 0 0
Post image

Applications for the 2025 Spring TMAP Program are now open!
Grow your leadership in K–12 technology—and this year, the CITE Foundation is offering one TMAP scholarship to support your journey.
Apply today: https://www.cite.org/tmap
#CITE_EDU #k12sysadmin #edtech #technology #TMAP

1 0 0 0
Post image

TMAP Applications Are OPEN!
This is your opportunity to grow as a K–12 technology leader and make a lasting impact.
Apply now and take the next step in your leadership journey: https://www.cite.org/tmap
#CITE_EDU #k12sysadmin #edtech #technology #TMAP

1 0 0 0
Preview
tmap vs. ggplot2 for mapping – Geospatial Stuff For me at least the choice between ggplot2 and tmap is an ongoing question. Here are my latest thoughts on the subject (with code).

tmap or ggplot2 for maps? 🗺️

David O’Sullivan breaks down the trade-offs in a blog post.

URL: dosull.github.io/posts/2024-1...

#RStats #RSpatial #Maps #tmap #ggplot2

36 18 0 1
Preview
tmap vs. ggplot2 for mapping – Geospatial Stuff For me at least the choice between ggplot2 and tmap is an ongoing question. Here are my latest thoughts on the subject (with code).

tmap or ggplot2 for maps? 🗺️

David O’Sullivan breaks down the trade-offs in a blog post.

URL: dosull.github.io/posts/2024-11-16-tmap-vs...

#RStats #RSpatial #Maps #tmap #ggplot2

2 3 0 0
library(tmap)
library(htmltools)
tmap_mode("view")

# Single line legend, \n has no effect
tm_shape(World) +
  tm_polygons(
    fill = "pop_est",
    fill.legend = tm_legend(
      title = "Long title for\npopulation estimate"
    )
  )

# Single line legend title showing HTML tags
tm_shape(World) +
  tm_polygons(
    fill = "pop_est",
    fill.legend = tm_legend(
      title = paste0(
        "Long title for",
        br("population estimate")
      )
    )
  )

library(tmap) library(htmltools) tmap_mode("view") # Single line legend, \n has no effect tm_shape(World) + tm_polygons( fill = "pop_est", fill.legend = tm_legend( title = "Long title for\npopulation estimate" ) ) # Single line legend title showing HTML tags tm_shape(World) + tm_polygons( fill = "pop_est", fill.legend = tm_legend( title = paste0( "Long title for", br("population estimate") ) ) )

Any #RSpatial / #tmap folks know how to do linebreaks in legend titles in 'View' mode in {tmap} v4 and care to help a fella out? I'm probably missing something obvious but equivalent methods I used to use in v3 aren't working for me... (reprex in alt text)

0 0 0 0
Video

Day 05 of #30DayMapChallenge on Earth (Classical Elements 1/4)

I've discovered and used the new `tmap.mapgl` to show Swizerland's elevation. It's mindblowing how easy it is.

guillaume-noblet.com/30DayMapChal...

#dataviz #rstats #tmap #gis #mapgl cc @mtennekes and thanks!

17 5 0 0
A screenshot of the blog post

A screenshot of the blog post

A screenshot of the blog post

A screenshot of the blog post

🗺️ New blog post: introducing Spatial Data Visualization with tmap, a work-in-progress guide to thematic mapping in #RStats.

Learn about the book, its progress, and how to contribute: geocompx.org/post/2025/tm...

#DataViz #Mapping #tmap #geocompx

18 4 1 0
A screenshot of the blog post

A screenshot of the blog post

A screenshot of the blog post

A screenshot of the blog post

🗺️ New blog post: introducing Spatial Data Visualization with tmap, a work-in-progress guide to thematic mapping in #RStats.

Learn about the book, its progress, and how to contribute: https://geocompx.org/post/2025/tmap-bp1/

#DataViz #Mapping #tmap #geocompx

1 2 0 0
Post image

#TMAP

📣 Otro récord en más de VEINTE AÑOS del mejor gobierno de la historia de la humanidad y de otras galaxias…😵‍💫

Después te cuentan que bajaron la DEUDA EXTERNA…el mismo @INDECArgentina los desmienten 🤷🏻‍♂️

En octubre #MILEIOVOS 🫵

3 4 0 0
Post image

Todo es photoshop…

Su foto, su relato, su “milagro” que termina en una crisis sin precedentes y mangando guita a todo lo que mueva 🤷🏻‍♂️😵‍💫

#TMAP (Todos Manotazos Al Pedo)

8 2 1 1
Post image

Ah, pero #TMAP

1 0 0 0

TMAP is a screen reader-friendly tool for creating tactile street maps. Raised......

#kottkeorg #TMAP

Read more on kottke.org: postreads.co/feed-item/22955/click

0 0 0 0
Post image

#TMAP

www.pagina12.com.ar/humor/rudy_p...

@humorista_rudy @danielpazahora.bsky.social @pagina12ok.bsky.social

0 0 0 0
Aligning legend items in tmap ‘view’ mode – CMEP coding blog

Had a headache with legend alignment of {tmap} output when using 'view' mode in rendered html. Fixed with css. Blogged it. Is this really the only way? {tmap} is great, even so. #rstats #tmap
cmep-ms.github.io/blog/posts/2...

1 1 0 0
Post image

#TMAP 😳

Para ser “Nobel de Economía” y el “Mejor Ministro de Economía de la historia”, el dúo @JMilei @LuisCaputoAR dejan mucho que desear en Econometría 😎

❌Pifiaron en CINCO VECES sus cálculos

7 3 1 0

Nou, daar gaan we weer hoor. 3 dagen #TMap geven

0 0 1 0

Ik geef de komende 4 weken 3 meerdaagse trainingen. Dat vind ik best afzien eigenlijk. Soms helpt een collega mij uit de brand, soms ik een collega.
Vandaag #TMap test theorie, en wel in het Engels. Nooit eerder gedaan

5 0 4 0
Post image

🌊 CWSS, together with Brockmann Consult & Ubilabs, has improved access to Wadden Sea data: a new platform makes #TMAP (Trilateral Monitoring and Assessment Programme) environmental data of three countries easily accessible – supporting the protection of this unique ecosystem.
🌍 #OpenData #WaddenSea

1 0 0 0
A screen shot with the code and image from the url

A screen shot with the code and image from the url

tmap.mapgl introduces two new modes for the R tmap package: mapbox and maplibre 🌍🗺️

Still in development—requires dev versions of tmap and tmap.mapgl.

More info: github.com/r-tmap/tmap....

#rstats #rspatial #tmap

14 2 0 0
A screen shot with the code and image from the url

A screen shot with the code and image from the url

tmap.mapgl introduces two new modes for the R tmap package: mapbox and maplibre 🌍🗺️

Still in development—requires dev versions of tmap and tmap.mapgl.

More info: https://github.com/r-tmap/tmap.mapgl

#rstats #rspatial #tmap

2 3 0 0

Vandaag geven we weer eens #TMap. Het verschil met de meeste andere keren is dat ik dit keer met een half natte broek doe. In een kwartiertje fietsen kan je echt zeiknat worden

0 0 1 0
Post image

Todo Marcha Acorde Al Plan | Argentina avanza calculada y minuciosamente hacia su autodestrucción 💣

Los planes, los plazos y las proyecciones, en el nuevo número de Barcelona.

👉 Leelo acá: digital.revisbarcelona.com/library/publ...

#TMAP

30 6 1 0
Post image

Since the Magnus Protocol is finally back, I might as well post my Alice & Gwen interpretation I had last year 👀

#themagnusporotocol #tmp #tmap #rustyquill

11 3 0 0
Post image

Homemade pizza inspired by that one Treasure Map cooking episode. ✊️🙂‍↕️
youtu.be/25K2ZvsYOP0?...
@treasuremembers #TREASURE #TMAP

0 0 0 0
A tmap logo

A tmap logo

A screenshot of the tmap CRAN webpage.

A screenshot of the tmap CRAN webpage.

A map from tmap vignette

A map from tmap vignette

A map from tmap vignette

A map from tmap vignette

🚨 After years of development, the new version of #rstats tmap (4) is now available on CRAN! 🎉 Huge thanks to author Martijn Tennekes and all contributors.

🔧 Install: `install.packages("tmap")`
📚 Vignettes: https://buff.ly/4aAYNbq
📖 Book Chapter: https://buff.ly/43TokaF

#maps #tmap #rspatial

9 15 0 0
A tmap logo

A tmap logo

A screenshot of the tmap CRAN webpage.

A screenshot of the tmap CRAN webpage.

A map from tmap vignette

A map from tmap vignette

A map from tmap vignette

A map from tmap vignette

🚨 After years of development, the new version of #rstats tmap (4) is now available on CRAN! 🎉 Huge thanks to author Martijn Tennekes and all contributors.

🔧 Install: `install.packages("tmap")`
📚 Vignettes: https://buff.ly/4aAYNbq
📖 Book Chapter: https://buff.ly/43TokaF

#maps #tmap #rspatial

132 39 5 2