Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows Installation Issues (pyproj>=2.0.0) #216

Closed
snowman2 opened this issue Mar 23, 2019 · 10 comments
Closed

Windows Installation Issues (pyproj>=2.0.0) #216

snowman2 opened this issue Mar 23, 2019 · 10 comments
Labels
installation-issues Issue related to installation problems. windows Windows related issue

Comments

@snowman2
Copy link
Member

This issue is meant to be a central location for windows installation issues.

As of pyproj>=2.0.0, python 2.7 is no longer supported on windows due PROJ version 6.0.0 requiring c++ 11 and it is not supported by the 2008 version of MSVC.

There are now Windows wheels on pypi thanks to @cgohlke. Additionally, pyproj can be installed using conda. conda install -c conda-forge pyproj.

@jswhit
Copy link
Collaborator

jswhit commented Mar 27, 2019

We're missing binary wheels for 2.1.2 on windows on pypi. @cgohlke - would you mind updating the wheels on your page? (they're at 2.1.1 now)

@cgohlke
Copy link
Contributor

cgohlke commented Mar 27, 2019

I didn't upload the wheels for 2.1.2 because they were failing tests.

@snowman2
Copy link
Member Author

The failures are known and PROJ related. See #212. So, it would be fine to upload them. Thanks!

@cgohlke
Copy link
Contributor

cgohlke commented Mar 27, 2019

I uploaded the wheels. Maybe I'm missing something, but this doesn't look healthy to me:

===================================================================== test session starts =====================================================================
platform win32 -- Python 3.7.3, pytest-4.3.1, py-1.8.0, pluggy-0.9.0
...
plugins: xdist-1.27.0, pep8-1.0.6, forked-1.0.2, faulthandler-1.5.0, cov-2.6.1, palladium-1.2.1.1, hypothesis-4.14.0
collected 52 items

unittest\test_crs.py ...............................                                                                                                     [ 59%]
unittest\test_datadir.py s..sss.                                                                                                                         [ 73%]
unittest\test_doctest_wrapper.py F                                                                                                                       [ 75%]
unittest\test_exception_logging.py ..                                                                                                                    [ 78%]
unittest\test_transformer.py .FFFFFFFFF.                                                                                                                 [100%]

========================================================================== FAILURES ===========================================================================
________________________________________________________________________ test_doctests ________________________________________________________________________

    def test_doctests():
        failure_count = pyproj.test()
        # if the below line fails, doctests have failed
>       assert (
            failure_count == 0
        ), "{0} of the doctests in " "lib/pyproj/__init__.py failed".format(failure_count)
E       AssertionError: 19 of the doctests in lib/pyproj/__init__.py failed
E       assert 19 == 0

unittest\test_doctest_wrapper.py:12: AssertionError
-------------------------------------------------------------------- Captured stdout call ---------------------------------------------------------------------
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\proj.py", line 280, in pyproj.proj.Proj.__init__
Failed example:
    p = Proj(init="epsg:32667", preserve_units=False)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.proj.Proj.__init__[16]>", line 1, in <module>
        p = Proj(init="epsg:32667", preserve_units=False)
      File "X:\Python37\lib\site-packages\pyproj\proj.py", line 295, in __init__
        self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 224, in from_user_input
        return cls(**value)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 146, in __init__
        super(CRS, self).__init__(projstring)
      File "pyproj\_crs.pyx", line 317, in pyproj._crs._CRS.__init__
    pyproj.exceptions.CRSError: Invalid projection: +init=epsg:32667 +type=crs: (Internal Proj Error: proj_create: no database context specified)
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\proj.py", line 281, in pyproj.proj.Proj.__init__
Failed example:
    'x=%12.3f y=%12.3f (meters)' % p(-114.057222, 51.045)
Expected:
    'x=-1783506.250 y= 6193827.033 (meters)'
Got:
    'x= 1126363.604 y= 5692980.653 (meters)'
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\proj.py", line 283, in pyproj.proj.Proj.__init__
Failed example:
    p = Proj("+init=epsg:32667")
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.proj.Proj.__init__[18]>", line 1, in <module>
        p = Proj("+init=epsg:32667")
      File "X:\Python37\lib\site-packages\pyproj\proj.py", line 295, in __init__
        self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 226, in from_user_input
        return cls.from_string(value)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 202, in from_string
        return cls(proj_string)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 146, in __init__
        super(CRS, self).__init__(projstring)
      File "pyproj\_crs.pyx", line 317, in pyproj._crs._CRS.__init__
    pyproj.exceptions.CRSError: Invalid projection: +init=epsg:32667 +type=crs: (Internal Proj Error: proj_create: no database context specified)
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\proj.py", line 284, in pyproj.proj.Proj.__init__
Failed example:
    'x=%12.3f y=%12.3f (feet)' % p(-114.057222, 51.045)
Expected:
    'x=-5851386.754 y=20320914.191 (feet)'
Got:
    'x= 1126363.604 y= 5692980.653 (feet)'
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\proj.py", line 287, in pyproj.proj.Proj.__init__
Failed example:
    p1 = Proj(init="epsg:4214")
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.proj.Proj.__init__[20]>", line 1, in <module>
        p1 = Proj(init="epsg:4214")
      File "X:\Python37\lib\site-packages\pyproj\proj.py", line 295, in __init__
        self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 224, in from_user_input
        return cls(**value)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 146, in __init__
        super(CRS, self).__init__(projstring)
      File "pyproj\_crs.pyx", line 317, in pyproj._crs._CRS.__init__
    pyproj.exceptions.CRSError: Invalid projection: +init=epsg:4214 +type=crs: (Internal Proj Error: proj_create: no database context specified)
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\proj.py", line 288, in pyproj.proj.Proj.__init__
Failed example:
    x1, y1 = p1(116.366, 39.867)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.proj.Proj.__init__[21]>", line 1, in <module>
        x1, y1 = p1(116.366, 39.867)
    NameError: name 'p1' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\proj.py", line 289, in pyproj.proj.Proj.__init__
Failed example:
    '{:.3f} {:.3f}'.format(x1, y1)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.proj.Proj.__init__[22]>", line 1, in <module>
        '{:.3f} {:.3f}'.format(x1, y1)
    NameError: name 'x1' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\proj.py", line 291, in pyproj.proj.Proj.__init__
Failed example:
    x2, y2 = p1(x1, y1, inverse=True)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.proj.Proj.__init__[23]>", line 1, in <module>
        x2, y2 = p1(x1, y1, inverse=True)
    NameError: name 'p1' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\proj.py", line 292, in pyproj.proj.Proj.__init__
Failed example:
    '{:.3f} {:.3f}'.format(x2, y2)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.proj.Proj.__init__[24]>", line 1, in <module>
        '{:.3f} {:.3f}'.format(x2, y2)
    NameError: name 'x2' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\proj.py", line 369, in pyproj.proj.Proj.definition_string
Failed example:
    Proj('+init=epsg:4326').definition_string()
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.proj.Proj.definition_string[0]>", line 1, in <module>
        Proj('+init=epsg:4326').definition_string()
      File "X:\Python37\lib\site-packages\pyproj\proj.py", line 295, in __init__
        self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 226, in from_user_input
        return cls.from_string(value)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 202, in from_string
        return cls(proj_string)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 146, in __init__
        super(CRS, self).__init__(projstring)
      File "pyproj\_crs.pyx", line 317, in pyproj._crs._CRS.__init__
    pyproj.exceptions.CRSError: Invalid projection: +init=epsg:4326 +type=crs: (Internal Proj Error: proj_create: no database context specified)
**********************************************************************
2 items had failures:
   9 of  25 in pyproj.proj.Proj.__init__
   1 of   1 in pyproj.proj.Proj.definition_string
***Test Failed*** 10 failures.
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\crs.py", line 71, in pyproj.crs.CRS.__init__
Failed example:
    crs_utm = CRS.from_user_input(26915)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.crs.CRS.__init__[1]>", line 1, in <module>
        crs_utm = CRS.from_user_input(26915)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 222, in from_user_input
        return cls.from_epsg(value)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 167, in from_epsg
        return cls("epsg:{}".format(code))
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 146, in __init__
        super(CRS, self).__init__(projstring)
      File "pyproj\_crs.pyx", line 317, in pyproj._crs._CRS.__init__
    pyproj.exceptions.CRSError: Invalid projection: epsg:26915: (Internal Proj Error: proj_create: no database context specified)
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\crs.py", line 72, in pyproj.crs.CRS.__init__
Failed example:
    crs_utm
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.crs.CRS.__init__[2]>", line 1, in <module>
        crs_utm
    NameError: name 'crs_utm' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\crs.py", line 90, in pyproj.crs.CRS.__init__
Failed example:
    crs_utm.area_of_use.bounds
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.crs.CRS.__init__[3]>", line 1, in <module>
        crs_utm.area_of_use.bounds
    NameError: name 'crs_utm' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\crs.py", line 92, in pyproj.crs.CRS.__init__
Failed example:
    crs_utm.ellipsoid.inverse_flattening
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.crs.CRS.__init__[4]>", line 1, in <module>
        crs_utm.ellipsoid.inverse_flattening
    NameError: name 'crs_utm' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\crs.py", line 94, in pyproj.crs.CRS.__init__
Failed example:
    crs_utm.ellipsoid.semi_major_metre
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.crs.CRS.__init__[5]>", line 1, in <module>
        crs_utm.ellipsoid.semi_major_metre
    NameError: name 'crs_utm' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\crs.py", line 96, in pyproj.crs.CRS.__init__
Failed example:
    crs_utm.ellipsoid.semi_minor_metre
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.crs.CRS.__init__[6]>", line 1, in <module>
        crs_utm.ellipsoid.semi_minor_metre
    NameError: name 'crs_utm' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\crs.py", line 98, in pyproj.crs.CRS.__init__
Failed example:
    crs_utm.prime_meridian.unit_name
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.crs.CRS.__init__[7]>", line 1, in <module>
        crs_utm.prime_meridian.unit_name
    NameError: name 'crs_utm' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\crs.py", line 100, in pyproj.crs.CRS.__init__
Failed example:
    crs_utm.prime_meridian.unit_conversion_factor
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.crs.CRS.__init__[8]>", line 1, in <module>
        crs_utm.prime_meridian.unit_conversion_factor
    NameError: name 'crs_utm' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\crs.py", line 102, in pyproj.crs.CRS.__init__
Failed example:
    crs_utm.prime_meridian.longitude
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.crs.CRS.__init__[9]>", line 1, in <module>
        crs_utm.prime_meridian.longitude
    NameError: name 'crs_utm' is not defined
**********************************************************************
1 items had failures:
   9 of  18 in pyproj.crs.CRS.__init__
***Test Failed*** 9 failures.
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 204, in pyproj.transformer.Transformer.itransform
Failed example:
    transformer = Transformer.from_crs(4326, 2100)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.Transformer.itransform[1]>", line 1, in <module>
        transformer = Transformer.from_crs(4326, 2100)
      File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 89, in from_crs
        crs_from, crs_to, skip_equivalent
      File "pyproj\_transformer.pyx", line 68, in pyproj._transformer._Transformer.from_crs
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 222, in from_user_input
        return cls.from_epsg(value)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 167, in from_epsg
        return cls("epsg:{}".format(code))
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 146, in __init__
        super(CRS, self).__init__(projstring)
      File "pyproj\_crs.pyx", line 317, in pyproj._crs._CRS.__init__
    pyproj.exceptions.CRSError: Invalid projection: epsg:4326: (Internal Proj Error: proj_create: no database context specified)
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 206, in pyproj.transformer.Transformer.itransform
Failed example:
    for pt in transformer.itransform(points): '{:.3f} {:.3f}'.format(*pt)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.Transformer.itransform[3]>", line 1, in <module>
        for pt in transformer.itransform(points): '{:.3f} {:.3f}'.format(*pt)
    NameError: name 'transformer' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 214, in pyproj.transformer.Transformer.itransform
Failed example:
    transproj = Transformer.from_proj({"proj":'geocent', "ellps":'WGS84', "datum":'WGS84'}, '+init=EPSG:4326')
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.Transformer.itransform[7]>", line 1, in <module>
        transproj = Transformer.from_proj({"proj":'geocent', "ellps":'WGS84', "datum":'WGS84'}, '+init=EPSG:4326')
      File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 64, in from_proj
        proj_from, proj_to, skip_equivalent
      File "pyproj\_transformer.pyx", line 59, in pyproj._transformer._Transformer.from_proj
      File "X:\Python37\lib\site-packages\pyproj\proj.py", line 295, in __init__
        self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 226, in from_user_input
        return cls.from_string(value)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 202, in from_string
        return cls(proj_string)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 146, in __init__
        super(CRS, self).__init__(projstring)
      File "pyproj\_crs.pyx", line 317, in pyproj._crs._CRS.__init__
    pyproj.exceptions.CRSError: Invalid projection: +init=epsg:4326 +type=crs: (Internal Proj Error: proj_create: no database context specified)
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 215, in pyproj.transformer.Transformer.itransform
Failed example:
    for pt in transproj.itransform([(-2704026.010, -4253051.810, 3895878.820)], radians=True): '{:.3f} {:.3f} {:.3f}'.format(*pt)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.Transformer.itransform[8]>", line 1, in <module>
        for pt in transproj.itransform([(-2704026.010, -4253051.810, 3895878.820)], radians=True): '{:.3f} {:.3f} {:.3f}'.format(*pt)
    NameError: name 'transproj' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 217, in pyproj.transformer.Transformer.itransform
Failed example:
    transprojr = Transformer.from_proj('+init=EPSG:4326', {"proj":'geocent', "ellps":'WGS84', "datum":'WGS84'})
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.Transformer.itransform[9]>", line 1, in <module>
        transprojr = Transformer.from_proj('+init=EPSG:4326', {"proj":'geocent', "ellps":'WGS84', "datum":'WGS84'})
      File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 64, in from_proj
        proj_from, proj_to, skip_equivalent
      File "pyproj\_transformer.pyx", line 57, in pyproj._transformer._Transformer.from_proj
      File "X:\Python37\lib\site-packages\pyproj\proj.py", line 295, in __init__
        self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 226, in from_user_input
        return cls.from_string(value)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 202, in from_string
        return cls(proj_string)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 146, in __init__
        super(CRS, self).__init__(projstring)
      File "pyproj\_crs.pyx", line 317, in pyproj._crs._CRS.__init__
    pyproj.exceptions.CRSError: Invalid projection: +init=epsg:4326 +type=crs: (Internal Proj Error: proj_create: no database context specified)
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 218, in pyproj.transformer.Transformer.itransform
Failed example:
    for pt in transprojr.itransform([(-2.137, 0.661, -20.531)], radians=True): '{:.3f} {:.3f} {:.3f}'.format(*pt)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.Transformer.itransform[10]>", line 1, in <module>
        for pt in transprojr.itransform([(-2.137, 0.661, -20.531)], radians=True): '{:.3f} {:.3f} {:.3f}'.format(*pt)
    NameError: name 'transprojr' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 220, in pyproj.transformer.Transformer.itransform
Failed example:
    transproj_eq = Transformer.from_proj('+init=EPSG:4326', 4326, skip_equivalent=True)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.Transformer.itransform[11]>", line 1, in <module>
        transproj_eq = Transformer.from_proj('+init=EPSG:4326', 4326, skip_equivalent=True)
      File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 64, in from_proj
        proj_from, proj_to, skip_equivalent
      File "pyproj\_transformer.pyx", line 57, in pyproj._transformer._Transformer.from_proj
      File "X:\Python37\lib\site-packages\pyproj\proj.py", line 295, in __init__
        self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 226, in from_user_input
        return cls.from_string(value)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 202, in from_string
        return cls(proj_string)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 146, in __init__
        super(CRS, self).__init__(projstring)
      File "pyproj\_crs.pyx", line 317, in pyproj._crs._CRS.__init__
    pyproj.exceptions.CRSError: Invalid projection: +init=epsg:4326 +type=crs: (Internal Proj Error: proj_create: no database context specified)
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 221, in pyproj.transformer.Transformer.itransform
Failed example:
    for pt in transproj_eq.itransform([(-2.137, 0.661)]): '{:.3f} {:.3f}'.format(*pt)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.Transformer.itransform[12]>", line 1, in <module>
        for pt in transproj_eq.itransform([(-2.137, 0.661)]): '{:.3f} {:.3f}'.format(*pt)
    NameError: name 'transproj_eq' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 138, in pyproj.transformer.Transformer.transform
Failed example:
    transformer = Transformer.from_crs("epsg:4326", "epsg:3857")
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.Transformer.transform[1]>", line 1, in <module>
        transformer = Transformer.from_crs("epsg:4326", "epsg:3857")
      File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 89, in from_crs
        crs_from, crs_to, skip_equivalent
      File "pyproj\_transformer.pyx", line 68, in pyproj._transformer._Transformer.from_crs
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 226, in from_user_input
        return cls.from_string(value)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 189, in from_string
        return cls.from_epsg(val)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 167, in from_epsg
        return cls("epsg:{}".format(code))
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 146, in __init__
        super(CRS, self).__init__(projstring)
      File "pyproj\_crs.pyx", line 317, in pyproj._crs._CRS.__init__
    pyproj.exceptions.CRSError: Invalid projection: epsg:4326: (Internal Proj Error: proj_create: no database context specified)
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 139, in pyproj.transformer.Transformer.transform
Failed example:
    x3, y3 = transformer.transform(33, 98)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.Transformer.transform[2]>", line 1, in <module>
        x3, y3 = transformer.transform(33, 98)
    NameError: name 'transformer' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 140, in pyproj.transformer.Transformer.transform
Failed example:
    "%.3f  %.3f" % (x3, y3)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.Transformer.transform[3]>", line 1, in <module>
        "%.3f  %.3f" % (x3, y3)
    NameError: name 'x3' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 147, in pyproj.transformer.Transformer.transform
Failed example:
    transproj = Transformer.from_proj({"proj":'geocent', "ellps":'WGS84', "datum":'WGS84'}, '+init=EPSG:4326')
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.Transformer.transform[8]>", line 1, in <module>
        transproj = Transformer.from_proj({"proj":'geocent', "ellps":'WGS84', "datum":'WGS84'}, '+init=EPSG:4326')
      File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 64, in from_proj
        proj_from, proj_to, skip_equivalent
      File "pyproj\_transformer.pyx", line 59, in pyproj._transformer._Transformer.from_proj
      File "X:\Python37\lib\site-packages\pyproj\proj.py", line 295, in __init__
        self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 226, in from_user_input
        return cls.from_string(value)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 202, in from_string
        return cls(proj_string)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 146, in __init__
        super(CRS, self).__init__(projstring)
      File "pyproj\_crs.pyx", line 317, in pyproj._crs._CRS.__init__
    pyproj.exceptions.CRSError: Invalid projection: +init=epsg:4326 +type=crs: (Internal Proj Error: proj_create: no database context specified)
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 148, in pyproj.transformer.Transformer.transform
Failed example:
    xpj, ypj, zpj = transproj.transform(-2704026.010, -4253051.810, 3895878.820, radians=True)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.Transformer.transform[9]>", line 1, in <module>
        xpj, ypj, zpj = transproj.transform(-2704026.010, -4253051.810, 3895878.820, radians=True)
    NameError: name 'transproj' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 149, in pyproj.transformer.Transformer.transform
Failed example:
    "%.3f %.3f %.3f" % (xpj, ypj, zpj)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.Transformer.transform[10]>", line 1, in <module>
        "%.3f %.3f %.3f" % (xpj, ypj, zpj)
    NameError: name 'xpj' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 151, in pyproj.transformer.Transformer.transform
Failed example:
    transprojr = Transformer.from_proj('+init=EPSG:4326', {"proj":'geocent', "ellps":'WGS84', "datum":'WGS84'})
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.Transformer.transform[11]>", line 1, in <module>
        transprojr = Transformer.from_proj('+init=EPSG:4326', {"proj":'geocent', "ellps":'WGS84', "datum":'WGS84'})
      File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 64, in from_proj
        proj_from, proj_to, skip_equivalent
      File "pyproj\_transformer.pyx", line 57, in pyproj._transformer._Transformer.from_proj
      File "X:\Python37\lib\site-packages\pyproj\proj.py", line 295, in __init__
        self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 226, in from_user_input
        return cls.from_string(value)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 202, in from_string
        return cls(proj_string)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 146, in __init__
        super(CRS, self).__init__(projstring)
      File "pyproj\_crs.pyx", line 317, in pyproj._crs._CRS.__init__
    pyproj.exceptions.CRSError: Invalid projection: +init=epsg:4326 +type=crs: (Internal Proj Error: proj_create: no database context specified)
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 152, in pyproj.transformer.Transformer.transform
Failed example:
    xpjr, ypjr, zpjr = transprojr.transform(xpj, ypj, zpj, radians=True)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.Transformer.transform[12]>", line 1, in <module>
        xpjr, ypjr, zpjr = transprojr.transform(xpj, ypj, zpj, radians=True)
    NameError: name 'transprojr' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 153, in pyproj.transformer.Transformer.transform
Failed example:
    "%.3f %.3f %.3f" % (xpjr, ypjr, zpjr)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.Transformer.transform[13]>", line 1, in <module>
        "%.3f %.3f %.3f" % (xpjr, ypjr, zpjr)
    NameError: name 'xpjr' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 155, in pyproj.transformer.Transformer.transform
Failed example:
    transformer = Transformer.from_crs("epsg:4326", 4326, skip_equivalent=True)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.Transformer.transform[14]>", line 1, in <module>
        transformer = Transformer.from_crs("epsg:4326", 4326, skip_equivalent=True)
      File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 89, in from_crs
        crs_from, crs_to, skip_equivalent
      File "pyproj\_transformer.pyx", line 68, in pyproj._transformer._Transformer.from_crs
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 226, in from_user_input
        return cls.from_string(value)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 189, in from_string
        return cls.from_epsg(val)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 167, in from_epsg
        return cls("epsg:{}".format(code))
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 146, in __init__
        super(CRS, self).__init__(projstring)
      File "pyproj\_crs.pyx", line 317, in pyproj._crs._CRS.__init__
    pyproj.exceptions.CRSError: Invalid projection: epsg:4326: (Internal Proj Error: proj_create: no database context specified)
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 156, in pyproj.transformer.Transformer.transform
Failed example:
    xeq, yeq = transformer.transform(33, 98)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.Transformer.transform[15]>", line 1, in <module>
        xeq, yeq = transformer.transform(33, 98)
    NameError: name 'transformer' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 157, in pyproj.transformer.Transformer.transform
Failed example:
    "%.0f  %.0f" % (xeq, yeq)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.Transformer.transform[16]>", line 1, in <module>
        "%.0f  %.0f" % (xeq, yeq)
    NameError: name 'xeq' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 389, in pyproj.transformer.itransform
Failed example:
    p1 = Proj(init='epsg:4326', preserve_units=False)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.itransform[1]>", line 1, in <module>
        p1 = Proj(init='epsg:4326', preserve_units=False)
      File "X:\Python37\lib\site-packages\pyproj\proj.py", line 295, in __init__
        self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 224, in from_user_input
        return cls(**value)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 146, in __init__
        super(CRS, self).__init__(projstring)
      File "pyproj\_crs.pyx", line 317, in pyproj._crs._CRS.__init__
    pyproj.exceptions.CRSError: Invalid projection: +init=epsg:4326 +type=crs: (Internal Proj Error: proj_create: no database context specified)
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 391, in pyproj.transformer.itransform
Failed example:
    p2 = Proj(init='epsg:2100', preserve_units=False)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.itransform[2]>", line 1, in <module>
        p2 = Proj(init='epsg:2100', preserve_units=False)
      File "X:\Python37\lib\site-packages\pyproj\proj.py", line 295, in __init__
        self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 224, in from_user_input
        return cls(**value)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 146, in __init__
        super(CRS, self).__init__(projstring)
      File "pyproj\_crs.pyx", line 317, in pyproj._crs._CRS.__init__
    pyproj.exceptions.CRSError: Invalid projection: +init=epsg:2100 +type=crs: (Internal Proj Error: proj_create: no database context specified)
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 395, in pyproj.transformer.itransform
Failed example:
    for pt in itransform(p1,p2,points): '%6.3f %7.3f' % pt
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.itransform[4]>", line 1, in <module>
        for pt in itransform(p1,p2,points): '%6.3f %7.3f' % pt
    NameError: name 'p1' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 399, in pyproj.transformer.itransform
Failed example:
    pj = Proj(init="epsg:4214")
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.itransform[5]>", line 1, in <module>
        pj = Proj(init="epsg:4214")
      File "X:\Python37\lib\site-packages\pyproj\proj.py", line 295, in __init__
        self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 224, in from_user_input
        return cls(**value)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 146, in __init__
        super(CRS, self).__init__(projstring)
      File "pyproj\_crs.pyx", line 317, in pyproj._crs._CRS.__init__
    pyproj.exceptions.CRSError: Invalid projection: +init=epsg:4214 +type=crs: (Internal Proj Error: proj_create: no database context specified)
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 400, in pyproj.transformer.itransform
Failed example:
    pjx, pjy = pj(116.366, 39.867)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.itransform[6]>", line 1, in <module>
        pjx, pjy = pj(116.366, 39.867)
    NameError: name 'pj' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 401, in pyproj.transformer.itransform
Failed example:
    for pt in itransform(pj, Proj(4326), [(pjx, pjy)], radians=True, errcheck=True): '{:.3f} {:.3f}'.format(*pt)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.itransform[7]>", line 1, in <module>
        for pt in itransform(pj, Proj(4326), [(pjx, pjy)], radians=True, errcheck=True): '{:.3f} {:.3f}'.format(*pt)
    NameError: name 'pj' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 403, in pyproj.transformer.itransform
Failed example:
    for pt in itransform(4326, 4326, [(30, 60)], skip_equivalent=True): '{:.0f} {:.0f}'.format(*pt)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.itransform[8]>", line 1, in <module>
        for pt in itransform(4326, 4326, [(30, 60)], skip_equivalent=True): '{:.0f} {:.0f}'.format(*pt)
      File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 407, in itransform
        return Transformer.from_proj(p1, p2, skip_equivalent=skip_equivalent).itransform(
      File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 64, in from_proj
        proj_from, proj_to, skip_equivalent
      File "pyproj\_transformer.pyx", line 57, in pyproj._transformer._Transformer.from_proj
      File "X:\Python37\lib\site-packages\pyproj\proj.py", line 295, in __init__
        self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 222, in from_user_input
        return cls.from_epsg(value)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 167, in from_epsg
        return cls("epsg:{}".format(code))
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 146, in __init__
        super(CRS, self).__init__(projstring)
      File "pyproj\_crs.pyx", line 317, in pyproj._crs._CRS.__init__
    pyproj.exceptions.CRSError: Invalid projection: epsg:4326: (Internal Proj Error: proj_create: no database context specified)
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 295, in pyproj.transformer.transform
Failed example:
    p1 = Proj(init='epsg:26915', preserve_units=False)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.transform[1]>", line 1, in <module>
        p1 = Proj(init='epsg:26915', preserve_units=False)
      File "X:\Python37\lib\site-packages\pyproj\proj.py", line 295, in __init__
        self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 224, in from_user_input
        return cls(**value)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 146, in __init__
        super(CRS, self).__init__(projstring)
      File "pyproj\_crs.pyx", line 317, in pyproj._crs._CRS.__init__
    pyproj.exceptions.CRSError: Invalid projection: +init=epsg:26915 +type=crs: (Internal Proj Error: proj_create: no database context specified)
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 297, in pyproj.transformer.transform
Failed example:
    p2 = Proj(init='epsg:26715', preserve_units=False)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.transform[2]>", line 1, in <module>
        p2 = Proj(init='epsg:26715', preserve_units=False)
      File "X:\Python37\lib\site-packages\pyproj\proj.py", line 295, in __init__
        self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 224, in from_user_input
        return cls(**value)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 146, in __init__
        super(CRS, self).__init__(projstring)
      File "pyproj\_crs.pyx", line 317, in pyproj._crs._CRS.__init__
    pyproj.exceptions.CRSError: Invalid projection: +init=epsg:26715 +type=crs: (Internal Proj Error: proj_create: no database context specified)
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 299, in pyproj.transformer.transform
Failed example:
    x1, y1 = p1(-92.199881,38.56694)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.transform[3]>", line 1, in <module>
        x1, y1 = p1(-92.199881,38.56694)
    NameError: name 'p1' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 301, in pyproj.transformer.transform
Failed example:
    x2, y2 = transform(p1,p2,x1,y1)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.transform[4]>", line 1, in <module>
        x2, y2 = transform(p1,p2,x1,y1)
    NameError: name 'p1' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 302, in pyproj.transformer.transform
Failed example:
    '%9.3f %11.3f' % (x1,y1)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.transform[5]>", line 1, in <module>
        '%9.3f %11.3f' % (x1,y1)
    NameError: name 'x1' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 304, in pyproj.transformer.transform
Failed example:
    '%9.3f %11.3f' % (x2,y2)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.transform[6]>", line 1, in <module>
        '%9.3f %11.3f' % (x2,y2)
    NameError: name 'x2' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 306, in pyproj.transformer.transform
Failed example:
    '%8.3f %5.3f' % p2(x2,y2,inverse=True)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.transform[7]>", line 1, in <module>
        '%8.3f %5.3f' % p2(x2,y2,inverse=True)
    NameError: name 'p2' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 311, in pyproj.transformer.transform
Failed example:
    x1, y1 = p1(lons,lats)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.transform[10]>", line 1, in <module>
        x1, y1 = p1(lons,lats)
    NameError: name 'p1' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 312, in pyproj.transformer.transform
Failed example:
    x2, y2 = transform(p1,p2,x1,y1)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.transform[11]>", line 1, in <module>
        x2, y2 = transform(p1,p2,x1,y1)
    NameError: name 'p1' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 313, in pyproj.transformer.transform
Failed example:
    xy = x1+y1
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.transform[12]>", line 1, in <module>
        xy = x1+y1
    NameError: name 'x1' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 314, in pyproj.transformer.transform
Failed example:
    '%9.3f %9.3f %9.3f %11.3f %11.3f %11.3f' % xy
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.transform[13]>", line 1, in <module>
        '%9.3f %9.3f %9.3f %11.3f %11.3f %11.3f' % xy
    NameError: name 'xy' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 316, in pyproj.transformer.transform
Failed example:
    xy = x2+y2
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.transform[14]>", line 1, in <module>
        xy = x2+y2
    NameError: name 'x2' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 317, in pyproj.transformer.transform
Failed example:
    '%9.3f %9.3f %9.3f %11.3f %11.3f %11.3f' % xy
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.transform[15]>", line 1, in <module>
        '%9.3f %9.3f %9.3f %11.3f %11.3f %11.3f' % xy
    NameError: name 'xy' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 319, in pyproj.transformer.transform
Failed example:
    lons, lats = p2(x2,y2,inverse=True)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.transform[16]>", line 1, in <module>
        lons, lats = p2(x2,y2,inverse=True)
    NameError: name 'p2' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 328, in pyproj.transformer.transform
Failed example:
    "%s  %s" % (str(x2)[:9],str(y2)[:9])
Expected:
    '1402291.0  5076289.5'
Got:
    '1402224.5  5076275.4'
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 335, in pyproj.transformer.transform
Failed example:
    "%s  %s" % (str(x2)[:9],str(y2)[:9])
Expected:
    '1402291.0  5076289.5'
Got:
    '1402224.5  5076275.4'
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 337, in pyproj.transformer.transform
Failed example:
    pj = Proj(init="epsg:4214")
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.transform[30]>", line 1, in <module>
        pj = Proj(init="epsg:4214")
      File "X:\Python37\lib\site-packages\pyproj\proj.py", line 295, in __init__
        self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 224, in from_user_input
        return cls(**value)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 146, in __init__
        super(CRS, self).__init__(projstring)
      File "pyproj\_crs.pyx", line 317, in pyproj._crs._CRS.__init__
    pyproj.exceptions.CRSError: Invalid projection: +init=epsg:4214 +type=crs: (Internal Proj Error: proj_create: no database context specified)
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 338, in pyproj.transformer.transform
Failed example:
    pjx, pjy = pj(116.366, 39.867)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.transform[31]>", line 1, in <module>
        pjx, pjy = pj(116.366, 39.867)
    NameError: name 'pj' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 339, in pyproj.transformer.transform
Failed example:
    xr, yr = transform(pj, Proj(4326), pjx, pjy, radians=True, errcheck=True)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.transform[32]>", line 1, in <module>
        xr, yr = transform(pj, Proj(4326), pjx, pjy, radians=True, errcheck=True)
    NameError: name 'pj' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 340, in pyproj.transformer.transform
Failed example:
    "%.3f %.3f" % (xr, yr)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.transform[33]>", line 1, in <module>
        "%.3f %.3f" % (xr, yr)
    NameError: name 'xr' is not defined
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 342, in pyproj.transformer.transform
Failed example:
    xeq, yeq = transform(4326, 4326, 30, 60, skip_equivalent=True)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.transform[34]>", line 1, in <module>
        xeq, yeq = transform(4326, 4326, 30, 60, skip_equivalent=True)
      File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 346, in transform
        return Transformer.from_proj(p1, p2, skip_equivalent=skip_equivalent).transform(
      File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 64, in from_proj
        proj_from, proj_to, skip_equivalent
      File "pyproj\_transformer.pyx", line 57, in pyproj._transformer._Transformer.from_proj
      File "X:\Python37\lib\site-packages\pyproj\proj.py", line 295, in __init__
        self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 222, in from_user_input
        return cls.from_epsg(value)
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 167, in from_epsg
        return cls("epsg:{}".format(code))
      File "X:\Python37\lib\site-packages\pyproj\crs.py", line 146, in __init__
        super(CRS, self).__init__(projstring)
      File "pyproj\_crs.pyx", line 317, in pyproj._crs._CRS.__init__
    pyproj.exceptions.CRSError: Invalid projection: epsg:4326: (Internal Proj Error: proj_create: no database context specified)
**********************************************************************
File "X:\Python37\lib\site-packages\pyproj\transformer.py", line 343, in pyproj.transformer.transform
Failed example:
    "%.0f %.0f" % (xeq, yeq)
Exception raised:
    Traceback (most recent call last):
      File "X:\Python37\lib\doctest.py", line 1329, in __run
        compileflags, 1), test.globs)
      File "<doctest pyproj.transformer.transform[35]>", line 1, in <module>
        "%.0f %.0f" % (xeq, yeq)
    NameError: name 'xeq' is not defined
**********************************************************************
4 items had failures:
   8 of  13 in pyproj.transformer.Transformer.itransform
  12 of  17 in pyproj.transformer.Transformer.transform
   7 of   9 in pyproj.transformer.itransform
  22 of  36 in pyproj.transformer.transform
***Test Failed*** 49 failures.
_______________________________________________________________ test_transform_wgs84_to_alaska ________________________________________________________________

    def test_transform_wgs84_to_alaska():
>       lat_lon_proj = pyproj.Proj(init="epsg:4326", preserve_units=False)

unittest\test_transformer.py:21:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
X:\Python37\lib\site-packages\pyproj\proj.py:295: in __init__
    self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
X:\Python37\lib\site-packages\pyproj\crs.py:224: in from_user_input
    return cls(**value)
X:\Python37\lib\site-packages\pyproj\crs.py:146: in __init__
    super(CRS, self).__init__(projstring)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

>   ???
E   pyproj.exceptions.CRSError: Invalid projection: +init=epsg:4326 +type=crs: (Internal Proj Error: proj_create: no database context specified)

pyproj\_crs.pyx:317: CRSError
_________________________________________________________________ test_illegal_transformation _________________________________________________________________

    def test_illegal_transformation():
        # issue 202
>       p1 = pyproj.Proj(init="epsg:4326")

unittest\test_transformer.py:30:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
X:\Python37\lib\site-packages\pyproj\proj.py:295: in __init__
    self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
X:\Python37\lib\site-packages\pyproj\crs.py:224: in from_user_input
    return cls(**value)
X:\Python37\lib\site-packages\pyproj\crs.py:146: in __init__
    super(CRS, self).__init__(projstring)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

>   ???
E   pyproj.exceptions.CRSError: Invalid projection: +init=epsg:4326 +type=crs: (Internal Proj Error: proj_create: no database context specified)

pyproj\_crs.pyx:317: CRSError
______________________________________________________________ test_lambert_conformal_transform _______________________________________________________________

    def test_lambert_conformal_transform():
        # issue 207
>       Midelt = pyproj.Proj(init="epsg:26191")

unittest\test_transformer.py:48:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
X:\Python37\lib\site-packages\pyproj\proj.py:295: in __init__
    self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
X:\Python37\lib\site-packages\pyproj\crs.py:224: in from_user_input
    return cls(**value)
X:\Python37\lib\site-packages\pyproj\crs.py:146: in __init__
    super(CRS, self).__init__(projstring)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

>   ???
E   pyproj.exceptions.CRSError: Invalid projection: +init=epsg:26191 +type=crs: (Internal Proj Error: proj_create: no database context specified)

pyproj\_crs.pyx:317: CRSError
_____________________________________________________________________ test_equivalent_crs _____________________________________________________________________

    def test_equivalent_crs():
>       transformer = Transformer.from_crs("epsg:4326", 4326, skip_equivalent=True)

unittest\test_transformer.py:60:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
X:\Python37\lib\site-packages\pyproj\transformer.py:89: in from_crs
    crs_from, crs_to, skip_equivalent
pyproj\_transformer.pyx:68: in pyproj._transformer._Transformer.from_crs
    ???
X:\Python37\lib\site-packages\pyproj\crs.py:226: in from_user_input
    return cls.from_string(value)
X:\Python37\lib\site-packages\pyproj\crs.py:189: in from_string
    return cls.from_epsg(val)
X:\Python37\lib\site-packages\pyproj\crs.py:167: in from_epsg
    return cls("epsg:{}".format(code))
X:\Python37\lib\site-packages\pyproj\crs.py:146: in __init__
    super(CRS, self).__init__(projstring)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

>   ???
E   pyproj.exceptions.CRSError: Invalid projection: epsg:4326: (Internal Proj Error: proj_create: no database context specified)

pyproj\_crs.pyx:317: CRSError
________________________________________________________________ test_equivalent_crs__disabled ________________________________________________________________

    def test_equivalent_crs__disabled():
>       transformer = Transformer.from_crs("epsg:4326", 4326)

unittest\test_transformer.py:67:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
X:\Python37\lib\site-packages\pyproj\transformer.py:89: in from_crs
    crs_from, crs_to, skip_equivalent
pyproj\_transformer.pyx:68: in pyproj._transformer._Transformer.from_crs
    ???
X:\Python37\lib\site-packages\pyproj\crs.py:226: in from_user_input
    return cls.from_string(value)
X:\Python37\lib\site-packages\pyproj\crs.py:189: in from_string
    return cls.from_epsg(val)
X:\Python37\lib\site-packages\pyproj\crs.py:167: in from_epsg
    return cls("epsg:{}".format(code))
X:\Python37\lib\site-packages\pyproj\crs.py:146: in __init__
    super(CRS, self).__init__(projstring)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

>   ???
E   pyproj.exceptions.CRSError: Invalid projection: epsg:4326: (Internal Proj Error: proj_create: no database context specified)

pyproj\_crs.pyx:317: CRSError
_______________________________________________________________ test_equivalent_crs__different ________________________________________________________________

    def test_equivalent_crs__different():
>       transformer = Transformer.from_crs("epsg:4326", 3857, skip_equivalent=True)

unittest\test_transformer.py:74:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
X:\Python37\lib\site-packages\pyproj\transformer.py:89: in from_crs
    crs_from, crs_to, skip_equivalent
pyproj\_transformer.pyx:68: in pyproj._transformer._Transformer.from_crs
    ???
X:\Python37\lib\site-packages\pyproj\crs.py:226: in from_user_input
    return cls.from_string(value)
X:\Python37\lib\site-packages\pyproj\crs.py:189: in from_string
    return cls.from_epsg(val)
X:\Python37\lib\site-packages\pyproj\crs.py:167: in from_epsg
    return cls("epsg:{}".format(code))
X:\Python37\lib\site-packages\pyproj\crs.py:146: in __init__
    super(CRS, self).__init__(projstring)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

>   ???
E   pyproj.exceptions.CRSError: Invalid projection: epsg:4326: (Internal Proj Error: proj_create: no database context specified)

pyproj\_crs.pyx:317: CRSError
____________________________________________________________________ test_equivalent_proj _____________________________________________________________________

    def test_equivalent_proj():
        transformer = Transformer.from_proj(
>           "+init=epsg:4326", pyproj.Proj(4326).crs.to_proj4(), skip_equivalent=True
        )

unittest\test_transformer.py:82:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
X:\Python37\lib\site-packages\pyproj\proj.py:295: in __init__
    self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
X:\Python37\lib\site-packages\pyproj\crs.py:222: in from_user_input
    return cls.from_epsg(value)
X:\Python37\lib\site-packages\pyproj\crs.py:167: in from_epsg
    return cls("epsg:{}".format(code))
X:\Python37\lib\site-packages\pyproj\crs.py:146: in __init__
    super(CRS, self).__init__(projstring)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

>   ???
E   pyproj.exceptions.CRSError: Invalid projection: epsg:4326: (Internal Proj Error: proj_create: no database context specified)

pyproj\_crs.pyx:317: CRSError
_______________________________________________________________ test_equivalent_proj__disabled ________________________________________________________________

    def test_equivalent_proj__disabled():
>       transformer = Transformer.from_proj(3857, pyproj.Proj(3857).crs.to_proj4())

unittest\test_transformer.py:90:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
X:\Python37\lib\site-packages\pyproj\proj.py:295: in __init__
    self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
X:\Python37\lib\site-packages\pyproj\crs.py:222: in from_user_input
    return cls.from_epsg(value)
X:\Python37\lib\site-packages\pyproj\crs.py:167: in from_epsg
    return cls("epsg:{}".format(code))
X:\Python37\lib\site-packages\pyproj\crs.py:146: in __init__
    super(CRS, self).__init__(projstring)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

>   ???
E   pyproj.exceptions.CRSError: Invalid projection: epsg:3857: (Internal Proj Error: proj_create: no database context specified)

pyproj\_crs.pyx:317: CRSError
_______________________________________________________________ test_equivalent_proj__different _______________________________________________________________

    def test_equivalent_proj__different():
>       transformer = Transformer.from_proj(3857, 4326, skip_equivalent=True)

unittest\test_transformer.py:97:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
X:\Python37\lib\site-packages\pyproj\transformer.py:64: in from_proj
    proj_from, proj_to, skip_equivalent
pyproj\_transformer.pyx:57: in pyproj._transformer._Transformer.from_proj
    ???
X:\Python37\lib\site-packages\pyproj\proj.py:295: in __init__
    self.crs = CRS.from_user_input(projparams if projparams is not None else kwargs)
X:\Python37\lib\site-packages\pyproj\crs.py:222: in from_user_input
    return cls.from_epsg(value)
X:\Python37\lib\site-packages\pyproj\crs.py:167: in from_epsg
    return cls("epsg:{}".format(code))
X:\Python37\lib\site-packages\pyproj\crs.py:146: in __init__
    super(CRS, self).__init__(projstring)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

>   ???
E   pyproj.exceptions.CRSError: Invalid projection: epsg:3857: (Internal Proj Error: proj_create: no database context specified)

pyproj\_crs.pyx:317: CRSError
======================================================= 10 failed, 38 passed, 4 skipped in 1.97 seconds =======================================================

@snowman2
Copy link
Member Author

snowman2 commented Mar 27, 2019

Nope, you are correct for your concern. These are definitely not the test results we are looking for 🙃

@cgohlke
Copy link
Contributor

cgohlke commented Mar 27, 2019

Let me re-build and test later tonight.

@snowman2
Copy link
Member Author

The errors: Internal Proj Error: proj_create: no database context specified) lead me to believe that the data directory is not found.

@cgohlke
Copy link
Contributor

cgohlke commented Mar 27, 2019

It looks like the failing tests are not run on Appveyor https://github.com/pyproj4/pyproj/blob/master/appveyor.yml#L118

Testing py -m pytest unittest\test_doctest_wrapper.py and py -m pytest unittest\test_transformer.py individually (not as py -m pytest unittest) passes.

So I assume the wheels are OK?

@snowman2
Copy link
Member Author

Strange testing behavior. I am thinking that it is a domino effect where one test causes others to fail. If they pass separately, I think the wheels are okay. We should update how the tests are run on appveyor. Thanks for looking into this!

@snowman2 snowman2 added the windows Windows related issue label Apr 18, 2019
@snowman2 snowman2 pinned this issue May 10, 2019
@snowman2 snowman2 unpinned this issue Nov 7, 2019
@snowman2 snowman2 pinned this issue Nov 8, 2019
@snowman2
Copy link
Member Author

snowman2 commented Dec 6, 2019

Thanks for your assistance in this @cgohlke! I think that it can be closed now.

@snowman2 snowman2 closed this as completed Dec 6, 2019
@snowman2 snowman2 unpinned this issue Dec 6, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
installation-issues Issue related to installation problems. windows Windows related issue
Projects
None yet
Development

No branches or pull requests

3 participants