morpc 0.2.0__tar.gz → 0.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {morpc-0.2.0/morpc.egg-info → morpc-0.2.2}/PKG-INFO +1 -2
- {morpc-0.2.0 → morpc-0.2.2}/demo/morpc-py-demos.ipynb +1 -1
- {morpc-0.2.0 → morpc-0.2.2}/morpc/__init__.py +1 -1
- {morpc-0.2.0 → morpc-0.2.2}/morpc/morpc.py +1 -3
- {morpc-0.2.0 → morpc-0.2.2/morpc.egg-info}/PKG-INFO +1 -2
- {morpc-0.2.0 → morpc-0.2.2}/morpc.egg-info/requires.txt +0 -1
- {morpc-0.2.0 → morpc-0.2.2}/pyproject.toml +0 -1
- {morpc-0.2.0 → morpc-0.2.2}/.gitattributes +0 -0
- {morpc-0.2.0 → morpc-0.2.2}/.github/workflows/python-publish.yml +0 -0
- {morpc-0.2.0 → morpc-0.2.2}/.gitignore +0 -0
- {morpc-0.2.0 → morpc-0.2.2}/README.md +0 -0
- {morpc-0.2.0 → morpc-0.2.2}/morpc/census/__init__.py +0 -0
- {morpc-0.2.0 → morpc-0.2.2}/morpc/census/census.py +0 -0
- {morpc-0.2.0 → morpc-0.2.2}/morpc/frictionless/__init__.py +0 -0
- {morpc-0.2.0 → morpc-0.2.2}/morpc/frictionless/frictionless.py +0 -0
- {morpc-0.2.0 → morpc-0.2.2}/morpc.egg-info/SOURCES.txt +0 -0
- {morpc-0.2.0 → morpc-0.2.2}/morpc.egg-info/dependency_links.txt +0 -0
- {morpc-0.2.0 → morpc-0.2.2}/morpc.egg-info/top_level.txt +0 -0
- {morpc-0.2.0 → morpc-0.2.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: morpc
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Data managment tools used by MORPC
|
|
5
5
|
Author-email: MORPC data team <dataandmaps@morpc.org>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -8,7 +8,6 @@ Classifier: Development Status :: 1 - Planning
|
|
|
8
8
|
Classifier: Intended Audience :: Developers
|
|
9
9
|
Requires-Python: >=3.10
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
|
-
Requires-Dist: json
|
|
12
11
|
Requires-Dist: requests
|
|
13
12
|
Requires-Dist: pandas
|
|
14
13
|
Requires-Dist: geopandas
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import json
|
|
2
|
-
|
|
3
1
|
# Conversion factors
|
|
4
2
|
# The following constants represent commonly used conversion factors for various units of measure
|
|
5
3
|
## Area
|
|
@@ -2165,4 +2163,4 @@ def add_placecombo(df, countyField="COUNTY", jurisField="JURIS", munitypeField="
|
|
|
2165
2163
|
import geopandas
|
|
2166
2164
|
outDf = df.copy()
|
|
2167
2165
|
outDf["PLACECOMBO"] = outDf[countyField].str.upper() + "_" + outDf[jurisField].str.upper() + "_" + outDf[munitypeField].str.upper()
|
|
2168
|
-
return outDf
|
|
2166
|
+
return outDf
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: morpc
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Data managment tools used by MORPC
|
|
5
5
|
Author-email: MORPC data team <dataandmaps@morpc.org>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -8,7 +8,6 @@ Classifier: Development Status :: 1 - Planning
|
|
|
8
8
|
Classifier: Intended Audience :: Developers
|
|
9
9
|
Requires-Python: >=3.10
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
|
-
Requires-Dist: json
|
|
12
11
|
Requires-Dist: requests
|
|
13
12
|
Requires-Dist: pandas
|
|
14
13
|
Requires-Dist: geopandas
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|