Omaha #3185 fix setEnvelope() typo
Change-Id: I128453b52b3b1ea029022913b09c9abcf659dadf Former-commit-id: 8c7d18c03edae9d9ec9a236ba324145c4a085ec3
This commit is contained in:
parent
f8a1e79288
commit
fdbc233bc8
1 changed files with 2 additions and 1 deletions
|
@ -31,6 +31,7 @@
|
||||||
# Feb 14, 2013 1614 bsteffen Refactor data access framework
|
# Feb 14, 2013 1614 bsteffen Refactor data access framework
|
||||||
# to use single request.
|
# to use single request.
|
||||||
# Jul 22, 2014 3185 njensen Fix getters to return python objs
|
# Jul 22, 2014 3185 njensen Fix getters to return python objs
|
||||||
|
# Aug 13, 2014 3185 njensen Fix setEnvelope() typo
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
@ -71,7 +72,7 @@ class JDataRequest(IDataRequest, JUtil.JavaWrapperClass):
|
||||||
from com.vividsolutions.jts.geom import Envelope
|
from com.vividsolutions.jts.geom import Envelope
|
||||||
bounds = env.bounds
|
bounds = env.bounds
|
||||||
jenv = Envelope(bounds[0], bounds[2], bounds[1], bounds[3])
|
jenv = Envelope(bounds[0], bounds[2], bounds[1], bounds[3])
|
||||||
self.jobj.setEnvelope(bounds)
|
self.jobj.setEnvelope(jenv)
|
||||||
|
|
||||||
def setLocationNames(self, *args):
|
def setLocationNames(self, *args):
|
||||||
from java.lang import String as JavaString
|
from java.lang import String as JavaString
|
||||||
|
|
Loading…
Add table
Reference in a new issue