• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

mapbox / rasterio / 3514 / 6
96%
master: 96%

Build:
DEFAULT BRANCH: master
Ran 25 Jul 2018 05:20PM UTC
Files 48
Run time 5s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

25 Jul 2018 05:14PM UTC coverage: 98.241% (+0.03%) from 98.208%
GDALVERSION="2.1.4"

push

travis-ci

sgillies
Correctly calculate bounds on a rotated raster (#1422)

* Add rotated.tif to test data

import numpy as np
import rasterio
from affine import Affine

a = Affine.translation(100, 200) * Affine.rotation(30) * Affine.scale(20, -10)

with rasterio.open('rotated.tif', 'w', 'GTiff', width=10, height=15, count=1,
                   crs=None, transform=a, dtype='uint8',
                   compress='packbits') as ds:
    ds.write(np.arange(15 * 10).reshape((1, 15, 10)).astype('B'))

* correctly calculate bounds on a rotated raster

1106 of 1178 branches covered (93.89%)

2905 of 2957 relevant lines covered (98.24%)

0.98 hits per line

Source Files on job 3514.6 (GDALVERSION="2.1.4")
  • Tree
  • List 0
  • Changed 8
  • Source Changed 8
  • Coverage Changed 8
Coverage ∆ File Lines Relevant Covered Missed Hits/Line Branch Hits Branch Misses
  • Back to Build 3426
  • Travis Job 3514.6
  • 306f2e60 on github
  • Prev Job for GDALVERSION="2.1.4" on master (#3511.5)
  • Next Job for GDALVERSION="2.1.4" on master (#3525.5)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc