-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
492519f
commit e8006a3
Showing
16 changed files
with
76 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -155,5 +155,5 @@ results/*.tif | |
results/*.csv | ||
results/*.shx | ||
data | ||
hydropop/config.py | ||
ecopop/config.py | ||
config.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
filename,description | ||
{name}_\ `hpus.gpkg`_,GeoPackage containing the HPUs as polygons (or MultiPolygons) and some attributes. See the hpus.gpkg table for attribute list. | ||
{name}_hpus.shp,ESRI shapefile of HPU boundaries; this is primarily used for upload to Google Earth Engine (GEE) as GEE does not support the .gpkg format. | ||
{name}_hpus.tif,Geotiff of hydropop units. Pixel values represent the unit to which the HPU belongs and correspond to {name}_hpus.gpkg and {name}_hpus.shp. Provided as a convenience when raster math is faster. | ||
{name}_hpu_classes.tif,"Geotiff of hydropop classes. Pixel values represent the class to which the HPU belongs. A HP class is the ""cluster"" to which the pixel belongs. The maximum number of classes is set as a hydropop creation parameter. This file is essentially a rasterization of {name}_hpu_classes.gpkg." | ||
{name}_hpu_classes.gpkg,GeoPackage of hydropop classes. Each polygon represents a connected cluster of pixels sharing the same class. The maximum number of classes is set as a hydropop creation parameter. This is a polygonization of the {name}_hpu_classes.tif file. | ||
{name}_areagrid.tif,"Geotiff for which pixel values represent the area of the pixel in square km. This is used for computing actual hydropop unit areas, as working in unprojected coordinate systems (4326) require a bit of extra work to estimate pixel areas in meaningful units (i.e. km instead of degrees)." | ||
{name}_adjacency.csv,"Provides connectivity information among hydropop units. Contains two columns: **hpu_id** of each hydropop unit in the dataset, and **adjacency** that specifies each hpu_id's neighbors as a comma-separated string." | ||
{name}_hpus.tif,Geotiff of ecopop units. Pixel values represent the unit to which the HPU belongs and correspond to {name}_hpus.gpkg and {name}_hpus.shp. Provided as a convenience when raster math is faster. | ||
{name}_hpu_classes.tif,"Geotiff of ecopop classes. Pixel values represent the class to which the HPU belongs. A HP class is the ""cluster"" to which the pixel belongs. The maximum number of classes is set as a ecopop creation parameter. This file is essentially a rasterization of {name}_hpu_classes.gpkg." | ||
{name}_hpu_classes.gpkg,GeoPackage of ecopop classes. Each polygon represents a connected cluster of pixels sharing the same class. The maximum number of classes is set as a ecopop creation parameter. This is a polygonization of the {name}_hpu_classes.tif file. | ||
{name}_areagrid.tif,"Geotiff for which pixel values represent the area of the pixel in square km. This is used for computing actual ecopop unit areas, as working in unprojected coordinate systems (4326) require a bit of extra work to estimate pixel areas in meaningful units (i.e. km instead of degrees)." | ||
{name}_adjacency.csv,"Provides connectivity information among ecopop units. Contains two columns: **hpu_id** of each ecopop unit in the dataset, and **adjacency** that specifies each hpu_id's neighbors as a comma-separated string." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,16 +5,16 @@ | |
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name="hydropop", | ||
name="ecopop", | ||
version="1.0", | ||
author="Jon Schwenk", | ||
author_email="[email protected]", | ||
description="Package to create hydropop scaling units", | ||
description="Package to create ecopop scaling units", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/lanl/hydropop", | ||
url="https://github.com/lanl/ecopop", | ||
project_urls={ | ||
"Bug Tracker": "https://github.com/lanl/hydropop/issues", | ||
"Bug Tracker": "https://github.com/lanl/ecopop/issues", | ||
}, | ||
# scripts=["rabpro/cli/rabpro"], | ||
python_requires='>=3', | ||
|