You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

extend PostSharp script to recognize *.snk file
don't forget to set Category(...): [Test] public void InsertManyObjects()

Unknown macro: { ... }

change "channel = new Channel

Unknown macro: { Network = network }

" ==> "channel = new Channel(); Network.Channels.Add(channel)"
the same for BranchFeatures, NodeFeatures and many other places
disabled setters for BranchFeature.Branch, NodeFeature.Node via interfaces
TODO: rename
from:
DelftTools.DataObjects
DelftTools.DataObjects.Functions
to:
DelftTools.Hydro
DelftTools.Functions
move FeatureType from FeatureCollectionProvider to IFeatureProvider
cleanup:
((FeatureCollection)hydroNetworkLayer.BranchLayer.DataSource).Add(GeometryFromWKT.Parse("LINESTRING (0 0, 100 100)"));
to
hydroNetworkLayer.BranchLayer.DataSource.Add(GeometryFromWKT.Parse("LINESTRING (0 0, 100 100)"));
make GeometryHelper static class instead requiring to create instance of it
enable logging in SQLite tests (debugging LazyPropertyChanged test)
2d necdf grid visualization is broken
model doesn't run good with IPC (switched to TCP/IP)
cross-sections are not drawn correctly (enable point-based cross-sections as points for now?)
fix bug in tree view node presenters (no presenter for Segments, etc.)
hide disabled layer features in move tool
HACK: update time series manually
TODO: listen to the changes in Function.Filters in the FunctionBindingList and update it so that all controls will update
Chart, bug: last / first point in line series disappears
Chart, bug: function (downsamplig) does not work anymore, see AreaSeries (disabled downsampling for now)
BUG: CrossSectionView, history tool - should be enabled only when ShowHistorCommand is used (fixed in CrossSectionView)
BUG: CrossSectionView band does not work anymore, added check for left/right/bottom/top
BUG: CrossSectionView, when dragging point to the same X - exception in Variable, TODO: make CrossSectionView add only unique X points (X+small_dx)
BUG: current water level on cross-section does not exist - added as a property
BUG: water level tool changed:
double top = (lineTool != null) ? lineTool.YValue : ((!level.HasValue) ? level.Value : 0);
to:
double top = waterLevel;

TODO: remove knowledge of the WATER from Swf.Controls, review if we can't make this water level tool easier,
TODO: CrossSectionView (MarkerTool), validation of LaftRight lines does not work as expected, lines can be anywhere
BUG: lines of the tools shouldn't be drawn when they exceed X, Y axis
BUG: crossSectionView, tooltip for bottom is shown at the end while for left/right it is shown during dragging, fit it in the bottom line
BUG: history tool does not work as expected when moving points
add current water area calculation in crs (only when tools are dragged) we will certainly need something like CrossSectionEditor as a service
TODO: make new feature map tools work via editors if they are available? Consistency for ADD/MOVE, now they work in 2 different ways
TODO: merge all topology rules, rules, etc. into editors?

  • No labels