#MapTools
"The map is not the territory." #Korzybski: words are maptools for understanding; science develops accurate maps
December 13, 2024 at 7:33 PM
"ICQ me your ventrillo address while I boot up hamachi for maptools!"

If this sentence makes sense to you, you should ask your doctor about scheduling a colonoscopy.
February 17, 2026 at 5:54 PM
Día 17 – Una Herramienta Nueva #30DayMapChallenge. Distribución de La Población de Honduras - 2025. Herramieta: R usando sf, cartography y maptools.
November 17, 2025 at 1:13 AM
I think i did but its been an entire us admin ago. Hey at least there are details now!

(Never tell trav about maptools. These are art)
March 13, 2025 at 6:42 PM
Oh nice! Thanks for the pointer

Yml this paper, was referenced in old maptools for geog direction which I used elsewhere too

Sorry for image, I can't copy the link 🫠
July 12, 2025 at 11:27 AM
Weirdly why I stick with maptools
September 3, 2024 at 2:46 PM
Cross-posting from twitter:

This is a niche tweet, but it's just dawning on me how much the retirement of maptools/rgdal/raster for GIS in R is going to become an *enormous* headache for my work and I'm freaking out a little bit 😂🥲😂

Have others found good resources for navigating this transition?
February 7, 2024 at 5:41 PM
Me and my UK mates usually play D&D using Zoom and either Maptools or Roll20. We decided to give Discord a try. This was us.
January 8, 2024 at 9:45 AM
"The map is not the territory." - #Korzybski: words are maptools for understanding; science develops accurate maps
April 8, 2025 at 4:59 AM
Ah, vergessen zu erwähnen, Inkarnate war das Tool. Mittlerweile bearbeite ich hier und da gerne mal nach und ich verwende verschiedene Maptools für verschiedene Dinge :D
December 23, 2024 at 9:10 AM
"The map is not the territory." - #Korzybski: words are maptools for understanding and communicating; science develops shared accurate maps
March 19, 2025 at 2:40 PM
🧭 Columbus didn’t have MapGo
He just guessed and hoped for land.

But you?
Turn coordinates into instant answers—like distance to the nearest coastline or border.

🗺️ Stop discovering things by accident.

Start navigating with purpose → mapgo.io

#buildinpublic #maptools
May 22, 2025 at 6:26 PM
we play a lot with the classic Tabletop Simulator but it also doubles as a method for my wife to handcuff us to the table and play board games 😆
I'm an old man who just brute forces roll20 to work but honestly.. maptools is pretty good if you want to put in the work
October 24, 2024 at 4:33 PM
Things have got much better in recent years with sf and terra (and retirement of rgdal rgeos and maptools). gdistance for least costs paths etc still use sp and raster instead of sf and terra though which is not ideal. Some stuff in tmieno2.github.io/R-as-GIS-for...
Welcome | R as GIS for Economists
This is a book for Economists who regularly use spatial datasets for their econometric work.
tmieno2.github.io
November 18, 2024 at 3:36 PM
R lm.LMtests error in lag.listw(listw, y, zero.policy) : y not numeric
I am working on running an OLS on a shapefile and running tests on the residuals of that OLS where I am getting an error. library(maptools) library(sp) library(spdep) library(lmtest) library(spatialreg) library(rgdal) library(spstat) library(spatstat) library(spgwr) library(RColorBrewer) library(sf) library(dplyr) #read in my shapefile fires_OGR = readOGR(dsn = "C:/Users/westi/Desktop/unm_grad_21/580/project", layer="grid_1acre_fires") class(fires_OGR) class(fires_OGR$FIRE) = "Numeric" class(fires_OGR$CA_GAP) = "Numeric" class(fires_OGR$MEAN_PPT) = "Numeric" class(fires_OGR$MEAN_SLOPE) = "Numeric" class(fires_OGR$MEAN_ELEV) = "Numeric" class(fires_OGR$MEAN_VPD_M) = "Numeric" class(fires_OGR$MEAN_VPD_M.1) = "Numeric" class(fires_OGR$MEAN_ASPEC) = "Numeric" #row standardized "listw" object (default style = "W") fires_queen_nb = poly2nb(fires_OGR, queen=TRUE) fires_w = nb2listw(fires_queen_nb, zero.policy = TRUE) #ols for fire count per grid fires_ogr_OLS = lm(FIRE~CA_GAP + MEAN_PPT + MEAN_ELEV + MEAN_SLOPE + MEAN_VPD_M + MEAN_VPD_M.1 + MEAN_ASPEC, data = fires_OGR) summary(fires_ogr_OLS) #saving residuals and fitted values fires_OGR$olsresid = residuals(fires_ogr_OLS) fires_OGR$ols_fitted = fitted(fires_ogr_OLS) #moran test for residuals lm.morantest(fires_ogr_OLS, fires_w) #lagrange multiplier tests for residuals #fits a linear regression model for the squared residuals and examines #whether the fitted model is significant lm.LMtests(fires_ogr_OLS, fires_w, test = "all") #breusch pagan test for heteroskedasticity bptest(fires_ogr_OLS) Here is the error in the R terminal: I have tried making all the attributes I am using in my regression numeric since the error suggests that "y is not numeric" and when I run the "class(fires_OGR)" So I thought changing all the attributes used to numeric would fix the problem, but it did not. I guess the problem is I don't know what "y" is in this situation. Here is the summary from fires_OGR: Object of class SpatialPolygonsDataFrame Coordinates: min max x -120.69009 -115.78261 y 32.49987 35.02487 Is projected: FALSE proj4string : [+proj=longlat +datum=WGS84 +no_defs] Data attributes: CA_GAP MEAN_PPT MEAN_VPD_M MEAN_VPD_M.1 MAX_SLOPE MEAN_SLOPE MEAN_ASPEC MEAN_ELEV Length:2346 Min. : 61.84 Min. :0.697 Min. : 4.269 Min. : 0.00 Min. : 0.000 Min. : 0.0 Min. : -66.5 Class :character 1st Qu.: 285.70 1st Qu.:2.427 1st Qu.:18.219 1st Qu.:19.45 1st Qu.: 3.708 1st Qu.:160.9 1st Qu.: 220.7 Mode :character Median : 389.03 Median :3.544 Median :22.199 Median :29.23 Median : 7.937 Median :182.0 Median : 552.6 Mean : 404.13 Mean :3.923 Mean :22.441 Mean :26.65 Mean : 8.741 Mean :178.1 Mean : 687.7 3rd Qu.: 497.21 3rd Qu.:4.997 3rd Qu.:25.526 3rd Qu.:34.57 3rd Qu.:12.912 3rd Qu.:200.3 3rd Qu.:1077.2 Max. :1237.33 Max. :9.588 Max. :40.049 Max. :57.39 Max. :27.985 Max. :279.1 Max. :2904.3 MAJORITY_E FIRE mn_ppt mn_vpd_max mx_slope64 mn_slope mn_aspect Length:2346 Length:2346 Length:2346 Length:2346 Length:2346 Length:2346 Length:2346 Class :character Class :character Class :character Class :character Class :character Class :character Class :character Mode :character Mode :character Mode :character Mode :character Mode :character Mode :character Mode :character mn_elev maj_elev mn_vpd_min Length:2346 Length:2346 Length:2346 Class :character Class :character Class :character Mode :character Mode :character Mode :character
gis.stackexchange.com
August 5, 2026 at 3:07 PM
📖 UTM Using your GPS with the Universal Transverse Mercator Coordinate System by John Carnes
https://isbn.nu/9780971090118
July 26, 2026 at 3:00 PM
Is Maptive Powerful Enough for GIS Experts & Analysts?: Most cloud-based mapping tools ask you to choose. You can have something simple that your whole team can use, or you can have something powerful that requires specialized training. GIS analysts… #GIS #Mapping #DataAnalysis #Geospatial #MapTools
Is Maptive Powerful Enough for GIS Experts & Analysts?
Most cloud-based mapping tools ask you to choose. You can have something simple that your whole team can use, or you can have something powerful that requires specialized training. GIS analysts know this tradeoff well. They’ve spent years learning desktop software that does exactly what they need, and they’ve watched colleagues struggle with those same […] The post Is Maptive Powerful Enough for GIS Experts & Analysts? first appeared on Flowster.
dlvr.it
January 4, 2026 at 8:09 PM
Sorry that was for world building notes. If I remember correctly we saved half our notes on our maptools which was probably not a good idea but we got away with it.
January 5, 2026 at 9:17 PM
Curso sobre el software estadístico #R: La librería maptools http://es.slideshare.net/ISTAC/estadsticasgooglevisrsoftware-libre
(4) Curso sobre el software estadístico R: La librería ma...
(4) Curso sobre el software estadístico R: La librería ma...
es.slideshare.net
December 2, 2024 at 8:14 AM