mirror of
https://github.com/rasterio/rasterio.git
synced 2026-02-01 14:34:43 +00:00
75 lines
2.4 KiB
Python
75 lines
2.4 KiB
Python
import logging
|
|
import sys
|
|
|
|
from rasterio.rio.main import main_group
|
|
|
|
|
|
logging.basicConfig(stream=sys.stderr, level=logging.DEBUG)
|
|
|
|
|
|
def test_feature_seq(runner):
|
|
"""GeoJSON sequence w/out RS is the default"""
|
|
result = runner.invoke(
|
|
main_group, ['gcps', 'tests/data/white-gemini-iv.vrt'])
|
|
assert result.exit_code == 0
|
|
assert result.output.count('"Feature"') == 3
|
|
assert '-78' in result.output
|
|
|
|
|
|
def test_collection(runner):
|
|
"""GeoJSON collections can be had, optionally"""
|
|
result = runner.invoke(
|
|
main_group, ['gcps', 'tests/data/white-gemini-iv.vrt', '--collection'])
|
|
assert result.exit_code == 0
|
|
assert result.output.count('"FeatureCollection"') == 1
|
|
assert '-78' in result.output
|
|
|
|
|
|
def test_feature_seq_indent_rs(runner):
|
|
"""Indentation of a feature sequence succeeds with ascii RS option"""
|
|
result = runner.invoke(
|
|
main_group,
|
|
['gcps', 'tests/data/white-gemini-iv.vrt', '--indent', '2', '--rs'])
|
|
assert result.exit_code == 0
|
|
|
|
|
|
def test_feature_seq_indent_no_rs(runner):
|
|
"""Indentation of a feature sequence fails without ascii RS option"""
|
|
result = runner.invoke(
|
|
main_group, ['gcps', 'tests/data/white-gemini-iv.vrt', '--indent', '2'])
|
|
assert result.exit_code == 2
|
|
|
|
|
|
def test_projected(runner):
|
|
"""Projected GeoJSON is an option"""
|
|
result = runner.invoke(
|
|
main_group, ['gcps', 'tests/data/white-gemini-iv.vrt', '--projected'])
|
|
assert result.exit_code == 0
|
|
assert '-78' not in result.output
|
|
|
|
|
|
def test_feature_precision(runner):
|
|
"""Coordinate rounding is an option"""
|
|
result = runner.invoke(
|
|
main_group, ['gcps', 'tests/data/white-gemini-iv.vrt', '--projected', '--precision', '1'])
|
|
assert result.exit_code == 0
|
|
assert '"x": 116792.0' in result.output
|
|
|
|
|
|
def test_collection_precision(runner):
|
|
"""Coordinate rounding is an option"""
|
|
result = runner.invoke(
|
|
main_group, ['gcps', 'tests/data/white-gemini-iv.vrt', '--collection', '--projected', '--precision', '1'])
|
|
assert result.exit_code == 0
|
|
assert '"FeatureCollection"' in result.output
|
|
assert '"x": 116792.0' in result.output
|
|
|
|
|
|
def test_collection_geographic_precision(runner):
|
|
"""Unrounded coordinates are an option"""
|
|
result = runner.invoke(
|
|
main_group, ['gcps', 'tests/data/white-gemini-iv.vrt', '--collection', '--projected'])
|
|
assert result.exit_code == 0
|
|
assert '"FeatureCollection"' in result.output
|
|
assert '116792.0,' in result.output
|