Skip to content

Commit

Permalink
v 2.7.1. Rebuild launchers. Fix hard coded measure prefix.
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesParrott committed Nov 7, 2023
1 parent 26bd775 commit 78d918d
Show file tree
Hide file tree
Showing 48 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ sDNA_GH:
- Displays the results from sDNA by colouring a new layer of new polylines or the original ones.

## User manual.
__version__ = '2.7.0'
__version__ = '2.7.1'

## Table of contents

Expand Down
Binary file modified README.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion dev/tests/create_random_grid_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@


__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'

from random import random as random_num
from math import trunc as floor # for an int, not a float. math.floor(2.33) == 2.0; math.trunc(2.33) == 2
Expand Down
Binary file modified sDNA_GH/components/automatically_built/Config.ghuser
Binary file not shown.
Binary file modified sDNA_GH/components/automatically_built/Parse_Data.ghuser
Binary file not shown.
Binary file modified sDNA_GH/components/automatically_built/Read_Geom.ghuser
Binary file not shown.
Binary file modified sDNA_GH/components/automatically_built/Read_Shp.ghuser
Binary file not shown.
Binary file modified sDNA_GH/components/automatically_built/Read_Usertext.ghuser
Binary file not shown.
Binary file modified sDNA_GH/components/automatically_built/Recolour_Objects.ghuser
Binary file not shown.
Binary file modified sDNA_GH/components/automatically_built/Self_test.ghuser
Binary file not shown.
Binary file modified sDNA_GH/components/automatically_built/Write_Shp.ghuser
Binary file not shown.
Binary file modified sDNA_GH/components/automatically_built/Write_Usertext.ghuser
Binary file not shown.
Binary file modified sDNA_GH/components/automatically_built/sDNA_Access_Map.ghuser
Binary file not shown.
Binary file modified sDNA_GH/components/automatically_built/sDNA_Geodesics.ghuser
Binary file not shown.
Binary file modified sDNA_GH/components/automatically_built/sDNA_Hulls.ghuser
Binary file not shown.
Binary file modified sDNA_GH/components/automatically_built/sDNA_Int_From_OD.ghuser
Binary file not shown.
Binary file modified sDNA_GH/components/automatically_built/sDNA_Integral.ghuser
Binary file not shown.
Binary file modified sDNA_GH/components/automatically_built/sDNA_Learn.ghuser
Binary file not shown.
Binary file modified sDNA_GH/components/automatically_built/sDNA_Line_Measures.ghuser
Binary file not shown.
Binary file modified sDNA_GH/components/automatically_built/sDNA_Net_Radii.ghuser
Binary file not shown.
Binary file modified sDNA_GH/components/automatically_built/sDNA_Predict.ghuser
Binary file not shown.
Binary file modified sDNA_GH/components/automatically_built/sDNA_Prepare.ghuser
Binary file not shown.
Binary file modified sDNA_GH/components/automatically_built/sDNA_Skim.ghuser
Binary file not shown.
2 changes: 1 addition & 1 deletion sDNA_GH/custom/data_cruncher.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"""

__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'

import logging
import warnings
Expand Down
2 changes: 1 addition & 1 deletion sDNA_GH/custom/gdm_from_GH_Datatree.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@


__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'


import logging
Expand Down
2 changes: 1 addition & 1 deletion sDNA_GH/custom/logging_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# SOFTWARE.

__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'

import sys
import os
Expand Down
2 changes: 1 addition & 1 deletion sDNA_GH/custom/options_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@


__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'
"""
Functions to override namedtuples, from dicts, toml files
and other named tuples e.g. for options data structures.
Expand Down
2 changes: 1 addition & 1 deletion sDNA_GH/custom/pyshp_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@


__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'
""" Reads .shp files, and parses data and writes .shp files from any iterable.
"""

Expand Down
2 changes: 1 addition & 1 deletion sDNA_GH/custom/skel/add_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@


__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'

from collections import OrderedDict
import logging
Expand Down
2 changes: 1 addition & 1 deletion sDNA_GH/custom/skel/basic/ghdoc.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@


__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'


import Rhino
Expand Down
2 changes: 1 addition & 1 deletion sDNA_GH/custom/skel/basic/quacks_like.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /usr/bin/python
# -*- coding: utf-8 -*-
__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'


import abc
Expand Down
2 changes: 1 addition & 1 deletion sDNA_GH/custom/skel/basic/smart_comp.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"""

__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'

import logging
import inspect
Expand Down
2 changes: 1 addition & 1 deletion sDNA_GH/custom/skel/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@


__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'

import os
import shutil
Expand Down
2 changes: 1 addition & 1 deletion sDNA_GH/custom/skel/tools/helpers/checkers.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@


__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'


import os
Expand Down
2 changes: 1 addition & 1 deletion sDNA_GH/custom/skel/tools/helpers/funcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# SOFTWARE.

__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'

import os
import logging
Expand Down
2 changes: 1 addition & 1 deletion sDNA_GH/custom/skel/tools/helpers/rhino_gh_geom.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@


__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'


import os
Expand Down
2 changes: 1 addition & 1 deletion sDNA_GH/custom/skel/tools/inserter.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@


__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'

import logging
import collections
Expand Down
2 changes: 1 addition & 1 deletion sDNA_GH/custom/skel/tools/name_mapper.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /usr/bin/python
# -*- coding: utf-8 -*-
__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'

import logging
import collections
Expand Down
2 changes: 1 addition & 1 deletion sDNA_GH/custom/skel/tools/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@


__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'


import logging
Expand Down
4 changes: 2 additions & 2 deletions sDNA_GH/custom/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"""

__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'

import os
import sys
Expand Down Expand Up @@ -1959,7 +1959,7 @@ def __call__(self, f_name, gdm, opts = None):
def get_prefix(field):

# Return prefix if field has metric (A, E, H or C) appended, as well as radius
for prefix in ('Bt', 'Div', 'MGL', 'NQPD', 'SGL', 'TBPt', 'TPD'):
for prefix in ('Bt', 'Div', 'MGL', 'NQPD', 'SGL', 'TPBt', 'TPD'):
if field.startswith(prefix):
return prefix

Expand Down
2 changes: 1 addition & 1 deletion sDNA_GH/dev_tools/dev_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@


__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'

import os
import logging
Expand Down
2 changes: 1 addition & 1 deletion sDNA_GH/dev_tools/unload_sDNA_GH.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"""

__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'


from ghpythonlib.componentbase import executingcomponent as component
Expand Down
2 changes: 1 addition & 1 deletion sDNA_GH/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"""

__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'



Expand Down
2 changes: 1 addition & 1 deletion sDNA_GH/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"""

__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'

import sys
import os
Expand Down
2 changes: 1 addition & 1 deletion sDNA_GH/tests/test_cases.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@


__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'


import sys
Expand Down
2 changes: 1 addition & 1 deletion sDNA_GH/tests/unit_tests/sDNA_GH_unit_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@


__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'

import sys
import os
Expand Down
2 changes: 1 addition & 1 deletion sDNA_GH/tests/unit_tests/skel_unit_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@


__author__ = 'James Parrott'
__version__ = '2.7.0'
__version__ = '2.7.1'

import sys
import os
Expand Down
Binary file not shown.

0 comments on commit 78d918d

Please sign in to comment.