med-mastodon.com is one of the many independent Mastodon servers you can use to participate in the fediverse.
Medical community on Mastodon

Administered by:

Server stats:

411
active users

#rasters

0 posts0 participants0 posts today

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