Skip to content

Commit

Permalink
Fixing operands in wind energy expression. RE:natcap#1509
Browse files Browse the repository at this point in the history
  • Loading branch information
phargogh committed Feb 14, 2024
1 parent fec802a commit f8497f6
Showing 1 changed file with 10 additions and 13 deletions.
23 changes: 10 additions & 13 deletions src/natcap/invest/wind_energy.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,24 @@
import tempfile

import numpy
from scipy import integrate

import shapely.wkb
import shapely.wkt
import pygeoprocessing
import shapely.ops
import shapely.prepared
from shapely import speedups

import shapely.wkb
import shapely.wkt
import taskgraph
from osgeo import gdal
from osgeo import ogr
from osgeo import osr
from scipy import integrate
from shapely import speedups

import pygeoprocessing
import taskgraph
from . import utils
from . import gettext
from . import spec_utils
from .unit_registry import u
from . import utils
from . import validation
from .model_metadata import MODEL_METADATA
from . import gettext

from .unit_registry import u

LOGGER = logging.getLogger(__name__)
speedups.enable()
Expand Down Expand Up @@ -117,7 +114,7 @@
**spec_utils.AOI,
"projected": True,
"projection_units": u.meter,
"required": "valuation_container & grid_points_path",
"required": "valuation_container and grid_points_path",
"about": gettext(
"Map of the area(s) of interest over which to run the model "
"and aggregate valuation results. Required if Run Valuation "
Expand Down

0 comments on commit f8497f6

Please sign in to comment.