mathstodon.xyz is one of the many independent Mastodon servers you can use to participate in the fediverse.
A Mastodon instance for maths people. We have LaTeX rendering in the web interface!

Server stats:

2.8K
active users

#rasters

0 posts0 participants0 posts today

Chatter on ImageNet and Geoffrey Hinton (back propagation for deep learning). I think ImageNet *is* awesome and having a vast classified open image archive is what made Hinton's work possible. Anyone know of a #geospatial equivalent out there?

... “Pre-ImageNet, people did not believe in data,” Li said in an interview... “Everyone was working on completely different paradigms in AI with a tiny bit of data”...

#gis #rasters #imagery #geoint

[1] arstechnica.com/ai/2024/11/how

Ars Technica · How a stubborn computer scientist accidentally launched the deep learning boomBy Timothy B. Lee

TIL about rasterio, a #Python library for working with #rasters that's a lot easier to install than GDAL. Total gamechanger!

I needed to find out the CRS of a GeoTIFF that #ArcGIS wasn't reading correctly. It was a simple as running this code:

```
import rasterio as rs
dataset = rs.open(‘file.tif')
print(dataset.crs)
```
Documentation: rasterio.readthedocs.io/en/sta

And shout-out to this article that pointed me to it: towardsdatascience.com/reading

rasterio.readthedocs.ioRasterio: access to geospatial raster data — rasterio documentation