About 50 results
Open links in new tab
  1. Rasterio: access to geospatial raster data — rasterio 1.5.1.dev0 ...

    Rasterio: access to geospatial raster data Geographic information systems use GeoTIFF and other formats to organize and store gridded raster datasets such as satellite imagery and terrain models. …

  2. Python Quickstart — rasterio 1.4.4 documentation

    Python Quickstart Reading and writing data files is a spatial data programmer’s bread and butter. This document explains how to use Rasterio to read existing files and to create new files. Some advanced …

  3. Installation — rasterio 1.4.4 documentation - Read the Docs

    Many users find Anaconda and conda-forge a good way to install Rasterio and get access to more optional format drivers (like TileDB and others). Rasterio 1.4.4+ requires Python 3.10 or higher and …

  4. Reading Datasets — rasterio 1.5.1.dev0 documentation

    The returned object is a 2-dimensional numpy.ndarray. The representation of that array at the Python prompt is a summary; the GeoTIFF file that Rasterio uses for testing has 0 values in the corners, but …

  5. Plotting — rasterio 1.4.4 documentation - Read the Docs

    Plotting Rasterio reads raster data into numpy arrays so plotting a single band as two dimensional data can be accomplished directly with pyplot.

  6. Introduction — rasterio 1.5.1.dev0 documentation

    Rasterio’s goal is to be this kind of raster data library – expressing GDAL’s data model using fewer non-idiomatic extension classes and more idiomatic Python types and protocols, while performing as fast …

  7. Python API Reference — rasterio 1.4.4 documentation

    rasterio package Subpackages rio CLI rio blocks rio bounds rio calc rio clip Examples rio convert rio edit_info rio env rio gcps rio info rio insp rio mask rio merge rio overview rio rasterize Note rio rm rio …

  8. rasterio.crs module — rasterio 1.5.1.dev0 documentation

    rasterio.crs module Coordinate reference systems, the CRS class and supporting functions. A coordinate reference system (CRS) defines how a dataset’s pixels map to locations on, for example, …

  9. rasterio.io module — rasterio 1.4.4 documentation

    rasterio.io module Classes capable of reading and writing datasets Instances of these classes are called dataset objects. class rasterio.io.BufferedDatasetWriter Bases: BufferedDatasetWriterBase, …

  10. Resampling — rasterio 1.5.1.dev0 documentation

    Resampling For details on changing coordinate reference systems, see Reprojection. Up and downsampling Resampling refers to changing the cell values due to changes in the raster cell grid. …