reduced land cover types to 3. see #BITBUCKET-3785.
This commit is contained in:
parent
b3b723905f
commit
cf932f48fa
|
@ -5,19 +5,20 @@ import shutil
|
|||
import os
|
||||
|
||||
import pandas
|
||||
import numpy
|
||||
from pygeoprocessing.testing import scm
|
||||
|
||||
MODEL_DATA_PATH = os.path.join(
|
||||
os.path.dirname(__file__), '..', 'data', 'invest-data',
|
||||
'CropProduction', 'model_data')
|
||||
os.path.dirname(__file__), '..', 'data', 'invest-test-data',
|
||||
'crop_production_model', 'input', 'model_data')
|
||||
MODEL_DATA_PATH = r"C:\Users\Joanna Lin\Desktop\test_folder\crop\invest-test-data\input\model_data"
|
||||
SAMPLE_DATA_PATH = os.path.join(
|
||||
os.path.dirname(__file__), '..', 'data', 'invest-data',
|
||||
'CropProduction', 'sample_user_data')
|
||||
os.path.dirname(__file__), '..', 'data', 'invest-test-data',
|
||||
'crop_production_model', 'input', 'sample_user_data')
|
||||
SAMPLE_DATA_PATH = r"C:\Users\Joanna Lin\Desktop\test_folder\crop\invest-test-data\input\sample_user_data"
|
||||
TEST_DATA_PATH = os.path.join(
|
||||
os.path.dirname(__file__), '..', 'data', 'invest-test-data',
|
||||
'crop_production_model')
|
||||
|
||||
TEST_DATA_PATH = r"C:\Users\Joanna Lin\Desktop\test_folder\crop\invest-test-data"
|
||||
|
||||
class CropProductionTests(unittest.TestCase):
|
||||
"""Tests for the Crop Production model."""
|
||||
|
|
Loading…
Reference in New Issue