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

Feat pyproj crs #1737

Merged
merged 28 commits into from
Apr 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
e89975b
feat(discretization.Grid): move coordinate reference system handling …
aleaf Feb 8, 2023
6d4007c
feat(discretization.Grid): move coordinate reference system handling …
aleaf Feb 8, 2023
7f03748
refactor(export): replace epsg and proj4 input arguments with general…
aleaf Feb 21, 2023
9b93832
refactor(utils/mfreadnam.py): write crs 'srs' attribute string to nam…
aleaf Feb 22, 2023
8a59dd4
refactor(mt3d/mt.py; seawat/swt.py): pass modelgrid.crs attribute to …
aleaf Feb 22, 2023
93d2be1
refactor(discretization/grid.py): write crs to Grid.__repr__ instead …
aleaf Feb 22, 2023
96fb6b0
test(test_modflow.py): refactor to use crs attribute and to use valid…
aleaf Feb 22, 2023
0c88ca2
fix(export/shapefile_utils.py): write well-known text as utf-8 to avo…
aleaf Feb 22, 2023
f9160d8
fix(discretization/grid.py): crs wasn't getting set properly
aleaf Mar 1, 2023
23e5b47
refactor(export/netcdf.py):
aleaf Mar 1, 2023
502b4ba
refactor(export/shapefile_utils.py): remove CRS and EpsgReference cla…
aleaf Mar 1, 2023
c0d6e11
test:
aleaf Mar 1, 2023
c83e414
fix(export/shapefile_utils.py): use relpath_safe for printing written…
aleaf Mar 1, 2023
9158f5e
fix(discretization/grid.py): assign epsg and proj4 to crs attribute w…
aleaf Mar 1, 2023
c5ec3bd
refactor(export): replace epsg and proj4 input arguments with general…
aleaf Feb 21, 2023
32c2a01
fix(discretization/grid.py): pass crs to write_shapefile()
aleaf Mar 1, 2023
058af64
test: add autotest/test_shapefile_utils.py
aleaf Mar 1, 2023
935cdd8
docs(conf.py): add intersphinx_mapping
aleaf Mar 1, 2023
e12d664
docs(examples/Notebooks): refactor notebooks to use crs argument for …
aleaf Mar 1, 2023
945f3b1
refactor(export/netcdf.py):
aleaf Mar 1, 2023
a0de3a3
test(test_export.py::test_export_output): name output file based on t…
aleaf Mar 1, 2023
1074af8
feat(export): support pathlike export file paths
aleaf Mar 1, 2023
bbc416d
docs: updated flopy3_shapefile_export and flopy3_shapefile_features t…
aleaf Mar 1, 2023
ecaf2e2
fix(flopy/export/utils.py): add line continuations; missing verbose arg
aleaf Mar 20, 2023
9845290
docs(discretization): replace ndarray(int/float) with 'int/float or n…
aleaf Mar 28, 2023
a625abd
test(test_export): change invalid 4111 epsg code to 4431
aleaf Apr 19, 2023
5f71864
docs: reference prjfile arg instead of prj
aleaf Apr 19, 2023
dadaa00
refactor(flopy/utils/crs.py): move deprecated args to get_crs() to **…
aleaf Apr 19, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,3 +249,13 @@

# Output file base name for HTML help builder.
htmlhelp_basename = "flopydoc"

# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {
"python": ("https://docs.python.org/3/", None),
"numpy": ("https://docs.scipy.org/doc/numpy/", None),
"scipy": ("https://docs.scipy.org/doc/scipy/reference/", None),
"pandas": ("https://pandas.pydata.org/pandas-docs/stable", None),
"matplotlib": ("https://matplotlib.org", None),
"pyproj": ("https://pyproj4.github.io/pyproj/stable/", None),
}
37 changes: 0 additions & 37 deletions autotest/test_epsgreference.py

This file was deleted.

Loading