mirror of
https://github.com/Unidata/python-awips.git
synced 2025-02-23 06:47:57 -05:00
Couple more v23 updates
- Updated documentation - Update version to 23.1 - Added missing image - Update depcrated cascade to unary
This commit is contained in:
parent
a2a2ef9051
commit
d6fbde3fae
6 changed files with 12 additions and 11 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,3 +3,4 @@ docs/build/
|
|||
*.pyc
|
||||
.idea
|
||||
python_awips.egg-info
|
||||
build/
|
||||
|
|
|
@ -58,7 +58,7 @@ master_doc = 'index'
|
|||
|
||||
# General information about the project.
|
||||
project = 'python-awips'
|
||||
copyright = '2018, NSF Unidata'
|
||||
copyright = '2025, NSF Unidata'
|
||||
author = 'NSF Unidata'
|
||||
|
||||
# The version info for the project you're documenting, acts as replacement for
|
||||
|
@ -66,7 +66,7 @@ author = 'NSF Unidata'
|
|||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '20.1'
|
||||
version = '23.1'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
"import numpy.ma as ma\n",
|
||||
"from cartopy.mpl.gridliner import LONGITUDE_FORMATTER, LATITUDE_FORMATTER\n",
|
||||
"from cartopy.feature import ShapelyFeature,NaturalEarthFeature\n",
|
||||
"from shapely.ops import cascaded_union"
|
||||
"from shapely.ops import unary_union"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
@ -217,7 +217,7 @@
|
|||
"\n",
|
||||
"\n",
|
||||
"# All WFO counties merged to a single Polygon\n",
|
||||
"merged_counties = cascaded_union(counties)\n",
|
||||
"merged_counties = unary_union(counties)\n",
|
||||
"envelope = merged_counties.buffer(2)\n",
|
||||
"boundaries=[merged_counties]\n",
|
||||
"\n",
|
||||
|
|
|
@ -14,7 +14,7 @@ Pre-requisite Software
|
|||
|
||||
In order to effictively use python-awips you'll need to have these installed already:
|
||||
- python3
|
||||
- conda
|
||||
- micromamba (or conda)
|
||||
- git *(for the source code and examples installation)*
|
||||
|
||||
Package-Only Install
|
||||
|
@ -31,12 +31,12 @@ Pip Install
|
|||
pip install python-awips
|
||||
|
||||
|
||||
Conda Install
|
||||
Micromamba (conda) Install
|
||||
~~~~~~~~~~~~~
|
||||
|
||||
::
|
||||
|
||||
conda install -c conda-forge python-awips
|
||||
micromamba install -c conda-forge python-awips
|
||||
|
||||
|
||||
|
||||
|
@ -49,9 +49,9 @@ Below are instructions on how to install the source code of python-awips, with a
|
|||
|
||||
git clone https://github.com/Unidata/python-awips.git
|
||||
cd python-awips
|
||||
conda env create -f environment.yml
|
||||
conda activate python3-awips
|
||||
python setup.py install --force
|
||||
micromamba env create -f environment.yml
|
||||
micromamba activate python-awips
|
||||
pip install .
|
||||
jupyter notebook examples
|
||||
|
||||
|
||||
|
|
BIN
examples/images/NEXRAD_Level3_Radar_preview.png
Executable file
BIN
examples/images/NEXRAD_Level3_Radar_preview.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 85 KiB |
|
@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
|
|||
|
||||
[project]
|
||||
name = "python-awips"
|
||||
version = "23.4.1"
|
||||
version = "23.1"
|
||||
authors = [
|
||||
{ name="NSF Unidata", email="support-awips@ucar.edu" },
|
||||
]
|
||||
|
|
Loading…
Add table
Reference in a new issue