Skip to content
Snippets Groups Projects
Commit 0ad94c89 authored by jlaura's avatar jlaura Committed by Jesse Mapel
Browse files

Toisis (#118)

* Fixes key in measure creation

* Bumps minor minor
parent d9c45fa7
No related branches found
No related tags found
No related merge requests found
......@@ -259,7 +259,7 @@ class IsisStore(object):
measure_spec.serialnumber = m.serialnumber
measure_spec.sample = m.x
measure_spec.line = m.y
measure_spec.type = m.measure_type
measure_spec.type = m.measuretype
measure_iterable.append(measure_spec)
self.nmeasures += 1
......
......@@ -33,7 +33,7 @@ class TestWriteIsisControlNetwork(unittest.TestCase):
serial_times = {295: '1971-07-31T01:24:11.754',
296: '1971-07-31T01:24:36.970'}
cls.serials = {i:'APOLLO15/METRIC/{}'.format(j) for i, j in enumerate(serial_times.values())}
columns = ['point_id', 'type', 'serialnumber', 'measure_type', 'x', 'y', 'image_index']
columns = ['point_id', 'type', 'serialnumber', 'measuretype', 'x', 'y', 'image_index']
data = []
for i in range(cls.npts):
......@@ -54,7 +54,7 @@ class TestWriteIsisControlNetwork(unittest.TestCase):
serial_times = {295: '1971-07-31T01:24:11.754',
296: '1971-07-31T01:24:36.970'}
serials = {i:'APOLLO15/METRIC/{}'.format(j) for i, j in enumerate(serial_times.values())}
columns = ['point_id', 'type', 'serialnumber', 'measure_type', 'x', 'y', 'image_index']
columns = ['point_id', 'type', 'serialnumber', 'measuretype', 'x', 'y', 'image_index']
data = []
for i in range(self.npts):
......
......@@ -8,7 +8,7 @@ with open('README.md', 'r') as f:
def setup_package():
setup(
name = "plio",
version = '1.2.0',
version = '1.2.1',
author = "Jay Laura",
author_email = "jlaura@usgs.gov",
description = ("I/O API to support planetary data formats."),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment