All Projects → mapbox → supermercado

mapbox / supermercado

Licence: MIT License
Supercharger for mercantile

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to supermercado

untiler
Stitch image tiles into larger composite TIFs
Stars: ✭ 35 (-65%)
Mutual labels:  satellite, imagery, pxm
snuggs
Snuggs are s-expressions for Numpy
Stars: ✭ 15 (-85%)
Mutual labels:  satellite, imagery, pxm
pxm-manifest-specification
File specification for PXM (Pixel Monster)
Stars: ✭ 14 (-86%)
Mutual labels:  satellite, imagery, pxm
grib-doctor
Utilities for handling quirks of weather data grib files.
Stars: ✭ 20 (-80%)
Mutual labels:  satellite, imagery
rio-pansharpen
pansharpening landsat scenes
Stars: ✭ 42 (-58%)
Mutual labels:  satellite, imagery
rio-rgbify
Encoded arbitrary bit depth rasters in psuedo base-256
Stars: ✭ 62 (-38%)
Mutual labels:  satellite, imagery
sentinel-tiler
A serverless Sentinel-2 tiles server using AWS Lambda
Stars: ✭ 59 (-41%)
Mutual labels:  satellite, imagery
rio-glui
Explore CloudOptimized geotiff on your browser using Mapbox GL JS
Stars: ✭ 47 (-53%)
Mutual labels:  satellite, imagery
rio-hist
Histogram matching plugin for rasterio
Stars: ✭ 71 (-29%)
Mutual labels:  satellite, imagery
rio-toa
Top Of Atmosphere (TOA) calculations for Landsat 8
Stars: ✭ 38 (-62%)
Mutual labels:  satellite, imagery
image-discovery-app-js
JavaScript Image Discovery Web Application. Use to search, discover, filter, and manipulate imagery.
Stars: ✭ 22 (-78%)
Mutual labels:  imagery
PyProSAIL
Python interface to the ProSAIL leaf/canopy reflectance model
Stars: ✭ 15 (-85%)
Mutual labels:  satellite
SatDump
A generic satellite data processing software.
Stars: ✭ 223 (+123%)
Mutual labels:  satellite
ClimateVegetationDynamics GrangerCausality
Source code for the publications on "a non-linear Granger-causality framework to investigate climate–vegetation dynamics", by Papagiannopoulou et al., GMD & ERL 2017
Stars: ✭ 16 (-84%)
Mutual labels:  satellite
miq-RedHat-Satellite6
ManageIQ Automate Domain for integrating with Red Hat Satellite 6 developed by Red Hat Consulting.
Stars: ✭ 17 (-83%)
Mutual labels:  satellite
oriented-imagery
Find developer resources for Oriented Imagery, including a Web AppBuilder widget and oriented imagery catalog (OIC) schema.
Stars: ✭ 21 (-79%)
Mutual labels:  imagery
cesium-satellites
View the orbit of satellites in a Cesium viewer, derived from a two line element list
Stars: ✭ 45 (-55%)
Mutual labels:  satellite
Mercury-GS
An Open Source Program that allows users to interact with a Spacecraft in a lab environment, pre-launch.
Stars: ✭ 18 (-82%)
Mutual labels:  satellite
oresat-linux
OreSat Linux image builder, general embedded Linux documentation, and general utilities.
Stars: ✭ 12 (-88%)
Mutual labels:  satellite
jradio
Software radio decoding
Stars: ✭ 40 (-60%)
Mutual labels:  satellite

supermercado

Build Status codecov.io

supermercado extends the functionality of mercantile with additional commands

Installation

From pypi

pip install supermercado

To develop locally

git clone [email protected]:mapbox/supermercado.git
cd supermercado
pip install -e .

Usage

Usage: supermercado [OPTIONS] COMMAND [ARGS]...

Options:
  --help  Show this message and exit.

Commands:
  burn   Burn a stream of GeoJSON into a output...
  edges  For a stream of [<x>, <y>, <z>] tiles, return...
  union  Returns the unioned shape of a stream of...

supermercado burn

<{geojson} stream> | supermercado burn <zoom> | <[x, y, z] stream>

Takes an input stream of GeoJSON and returns a stream of intersecting [x, y, z]s for a given zoom.

image

cat data/ellada.geojson | supermercado burn 10 | mercantile shapes | fio collect

image

supermercado edges

<[x, y, z] stream> | supermercado edges | <[x, y, z] stream>

Outputs a stream of [x, y, z]s representing the edge tiles of an input stream of [x, y, z]s. Edge tile = any tile that is either directly adjacent to a tile that does not exist, or diagonal to an empty tile.

cat data/ellada.geojson | supermercado burn 10 | supermercado edges | mercantile shapes | fio collect | geojsonio

image

supermercado union

<[x, y, z] stream> | supermercado union | <{geojson} stream>

Outputs a stream of unioned GeoJSON from an input stream of [x, y, z]s. Like mercantile shapes but as an overall footprint instead of individual shapes for each tile.

cat data/ellada.geojson | supermercado burn 10 | supermercado union | fio collect | geojsonio

image

getting crazy

cat data/ellada.geojson | supermercado burn 12 | supermercado edges | supermercado union | fio collect | geojsonio

image

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].