Skip to content

Commit

Permalink
Pushing old version
Browse files Browse the repository at this point in the history
  • Loading branch information
ar-siddiqui committed Jun 18, 2020
1 parent 0eab373 commit 6d2df93
Show file tree
Hide file tree
Showing 11 changed files with 599 additions and 611 deletions.
4 changes: 2 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Curve Number Generator

Algorithm description

This algorithm generates Curve Number layer for the given Area of Interest within the contiguous United States. It can also download Soil and Land Cover datasets for the same area.
This algorithm generates Curve Number layer for the given Area of Interest within the contiguous Unites States. It can also download Soil and Land Cover datasets for the same area.

Input parameters

Expand Down Expand Up @@ -32,6 +32,6 @@ Generated Curve Number Layer based on Land Cover and HSG values.

Algorithm author: Abdul Raheem Siddiqui
Help author: Abdul Raheem Siddiqui
Algorithm version: 0.2
Algorithm version: 0.1
Contact email: [email protected]
Disclaimer: The curve number generated with this algorithm is a high level estimate and should not be used for detailed modeling or construction projects.
1,136 changes: 568 additions & 568 deletions Soil_Layer.qml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/***************************************************************************
CurveNumberGenerator
A QGIS plugin
This plugin generates a Curve Number layer for the given Area of Interest within the contiguous United States. It can also download Soil and Land Cover datasets for the same area.
This plugin generates a Curve Number layer for the given Area of Interest within the contiguous Unites States. It can also download Soil and Land Cover datasets for the same area.
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
-------------------
begin : 2020-06-06
Expand All @@ -23,7 +23,7 @@
"""

__author__ = 'Abdul Raheem Siddiqui'
__date__ = '2020-06-16'
__date__ = '2020-06-06'
__copyright__ = '(C) 2020 by Abdul Raheem Siddiqui'


Expand Down
Binary file modified __pycache__/__init__.cpython-37.pyc
Binary file not shown.
Binary file modified __pycache__/curve_number_generator.cpython-37.pyc
Binary file not shown.
Binary file modified __pycache__/curve_number_generator_algorithm.cpython-37.pyc
Binary file not shown.
Binary file modified __pycache__/curve_number_generator_provider.cpython-37.pyc
Binary file not shown.
4 changes: 2 additions & 2 deletions curve_number_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/***************************************************************************
CurveNumberGenerator
A QGIS plugin
This plugin generates a Curve Number layer for the given Area of Interest within the contiguous United States. It can also download Soil and Land Cover datasets for the same area.
This plugin generates a Curve Number layer for the given Area of Interest within the contiguous Unites States. It can also download Soil and Land Cover datasets for the same area.
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
-------------------
begin : 2020-06-06
Expand All @@ -23,7 +23,7 @@
"""

__author__ = 'Abdul Raheem Siddiqui'
__date__ = '2020-06-16'
__date__ = '2020-06-06'
__copyright__ = '(C) 2020 by Abdul Raheem Siddiqui'

# This will get replaced with a git SHA1 when you do a git archive
Expand Down
39 changes: 17 additions & 22 deletions curve_number_generator_algorithm.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions curve_number_generator_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/***************************************************************************
CurveNumberGenerator
A QGIS plugin
This plugin generates a Curve Number layer for the given Area of Interest within the contiguous United States. It can also download Soil and Land Cover datasets for the same area.
This plugin generates a Curve Number layer for the given Area of Interest within the contiguous Unites States. It can also download Soil and Land Cover datasets for the same area.
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
-------------------
begin : 2020-06-06
Expand All @@ -23,7 +23,7 @@
"""

__author__ = 'Abdul Raheem Siddiqui'
__date__ = '2020-06-16'
__date__ = '2020-06-06'
__copyright__ = '(C) 2020 by Abdul Raheem Siddiqui'

# This will get replaced with a git SHA1 when you do a git archive
Expand Down
19 changes: 6 additions & 13 deletions metadata.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
[general]
name=Curve Number Generator
qgisMinimumVersion=3.6
description=This plugin generates a Curve Number layer for the given Area of Interest within the contiguous United States. It can also download Soil and Land Cover datasets for the same area.
version=0.2
description=This plugin generates a Curve Number layer for the given Area of Interest within the contiguous Unites States. It can also download Soil and Land Cover datasets for the same area.
version=0.1
author=Abdul Raheem Siddiqui
[email protected]

about=This plugin generates a Curve Number layer for the given Area of Interest within the contiguous United States. It can also download Soil and Land Cover datasets for the same area.
about=This plugin generates a Curve Number layer for the given Area of Interest within the contiguous Unites States. It can also download Soil and Land Cover datasets for the same area.

tracker=https://github.com/someone191/Curve-Number-Generator/issues
repository=https://github.com/someone191/Curve-Number-Generator
Expand All @@ -20,23 +20,16 @@ repository=https://github.com/someone191/Curve-Number-Generator

hasProcessingProvider=yes
# Uncomment the following line and add your changelog:
changelog= Version 0.2 - 2020-06-16
- Warning message added to tell the user that ‘You are not using the latest version of QGIS, defaulting to the old version of native set style layer’
- EPSG 6996 and 6997 removed from the acceptable CRS list
- Assign 'MUNAME = Water', curve number 100
- Area calculation changed to planer calculation as some projects can have wrong context causing incorrect extent layer area
- Improved comments in the source code
- Minor changes in the text of help

# changelog=

# Tags are comma separated with spaces allowed
tags=curve number, CN, NLCD Land Cover, SSURGO, Soil, Hydrologic Soil Group, HSG, WFS, WMS, Hydrology, SCS,
tags=curve number, CN, NLCD Land Cover, SSURGO, Soil, Hydrologic Soil Group, HSG, WFS, WMS

homepage=https://github.com/someone191/Curve-Number-Generator
category=Analysis
icon=icon.png
# experimental flag
experimental=False
experimental=True

# deprecated flag (applies to the whole plugin, not just a single version)
deprecated=False
Expand Down

0 comments on commit 6d2df93

Please sign in to comment.