Changes
======= 0.5.1 (2014-02-02) ------------------ - Add mask option to shapes() function (#26). - Add rasterio.insp interactive interpreter. 0.5 (2014-01-22) ---------------- - Access to shapes of raster features via GDALPolygonize (#20). - Raster feature sieving (#21). - Registration and de-registration of drivers via context managers (#22). 0.4 (2013-12-19) ---------------- - Add nodatavals property (#13). - Allow nodata to be set when opening file to write (#17). 0.3 (2013-12-15) ---------------- - Drop six dependency (#9) - Add crs_wkt attribute (#10). - Add bounds attribute and ul() method (#11). - Add block_windows property (#7). - Enable windowed reads and writes (#6). - Use row,column ordering in window tuples as in Numpy (#13). - Add documentation on windowed reading and writing. 0.2 (2013-11-24) ---------------- - Band indexes start at 1 (#2). - Decimation or replication of pixels on read and write (#3). - Add rasterio.copy() (#5). 0.1 (2013-11-07) ---------------- - Reading and writing of GeoTIFFs, with examples.
This commit is contained in:
parent
b479f1c4ad
commit
6b5199a7e3
3 changed files with 17 additions and 8 deletions
|
@ -1,7 +1,7 @@
|
|||
# $NetBSD: Makefile,v 1.1 2014/01/15 21:00:45 jihbed Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2014/02/02 21:11:16 jihbed Exp $
|
||||
|
||||
DISTNAME= rasterio-0.4
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
DISTNAME= rasterio-0.5.1
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
CATEGORIES= math python
|
||||
MASTER_SITES= https://pypi.python.org/packages/source/r/rasterio/
|
||||
FETCH_USING= curl
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2014/01/15 21:00:45 jihbed Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2014/02/02 21:11:17 jihbed Exp $
|
||||
bin/rasterio.insp
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
|
@ -9,6 +10,8 @@ ${PYSITELIB}/rasterio/__init__.py
|
|||
${PYSITELIB}/rasterio/__init__.pyc
|
||||
${PYSITELIB}/rasterio/__init__.pyo
|
||||
${PYSITELIB}/rasterio/_copy.so
|
||||
${PYSITELIB}/rasterio/_drivers.so
|
||||
${PYSITELIB}/rasterio/_features.so
|
||||
${PYSITELIB}/rasterio/_io.so
|
||||
${PYSITELIB}/rasterio/dtypes.py
|
||||
${PYSITELIB}/rasterio/dtypes.pyc
|
||||
|
@ -16,9 +19,15 @@ ${PYSITELIB}/rasterio/dtypes.pyo
|
|||
${PYSITELIB}/rasterio/example.py
|
||||
${PYSITELIB}/rasterio/example.pyc
|
||||
${PYSITELIB}/rasterio/example.pyo
|
||||
${PYSITELIB}/rasterio/features.py
|
||||
${PYSITELIB}/rasterio/features.pyc
|
||||
${PYSITELIB}/rasterio/features.pyo
|
||||
${PYSITELIB}/rasterio/five.py
|
||||
${PYSITELIB}/rasterio/five.pyc
|
||||
${PYSITELIB}/rasterio/five.pyo
|
||||
${PYSITELIB}/rasterio/tool.py
|
||||
${PYSITELIB}/rasterio/tool.pyc
|
||||
${PYSITELIB}/rasterio/tool.pyo
|
||||
${PYSITELIB}/rasterio/wavg.py
|
||||
${PYSITELIB}/rasterio/wavg.pyc
|
||||
${PYSITELIB}/rasterio/wavg.pyo
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1 2014/01/15 21:00:45 jihbed Exp $
|
||||
$NetBSD: distinfo,v 1.2 2014/02/02 21:11:17 jihbed Exp $
|
||||
|
||||
SHA1 (rasterio-0.4.tar.gz) = da9a033cdacd9a83352a67948ff85c9d366f8bf3
|
||||
RMD160 (rasterio-0.4.tar.gz) = 9da629e2e4fa31b9196740addb7dc17b5338aea5
|
||||
Size (rasterio-0.4.tar.gz) = 137190 bytes
|
||||
SHA1 (rasterio-0.5.1.tar.gz) = 074ea8d840ac087f1afd9b5b0a8faf1acceef040
|
||||
RMD160 (rasterio-0.5.1.tar.gz) = 579469d8942de95ad7c07d3ac455b3bf71d84564
|
||||
Size (rasterio-0.5.1.tar.gz) = 256768 bytes
|
||||
|
|
Loading…
Reference in a new issue