Commented Unassigned: Distance.Parse is inconsistant with invalid input [24937]
Distance.Parse throws an exception when a number with an unrecognized unit is entered:```Distance.Parse("3 this should not be valid");```This is fine, but if the number is...
View ArticleCommented Unassigned: OGR Vectors [24361]
Still trying to use my own ogr driver, I encountered trouble in OGRDataReaders.cs :```private DateTime GetFieldAsDateTime(int i){ int year; int month; int day; int h; int m; int s; int flag;...
View ArticleCommented Unassigned: OGR Vectors [24351]
Hi,I'm triyng to load data from a database by using OGR Vectors in DotSpatial. I have no problem opening .shp and kml.But when I open a datasource using a connection string, when...
View ArticleNew Post: How to disable the "invalid or Missing Projection Message box"
At the Initial of form Public Sub New() InitializeComponent() 'Shell = Me Map1.ProjectionModeDefine = ActionMode.Never AppManager1.LoadExtensions() End sub
View ArticleEdited Issue: Distance.Parse is inconsistant with invalid input [24937]
Distance.Parse throws an exception when a number with an unrecognized unit is entered:```Distance.Parse("3 this should not be valid");```This is fine, but if the number is...
View ArticleSource code checked in, #73712
Fixed #24937: Distance.Parse is inconsistant with invalid input
View ArticleCommented Issue: Distance.Parse is inconsistant with invalid input [24937]
Distance.Parse throws an exception when a number with an unrecognized unit is entered:```Distance.Parse("3 this should not be valid");```This is fine, but if the number is...
View ArticleEdited Issue: Distance.Parse is inconsistant with invalid input [24937]
Distance.Parse throws an exception when a number with an unrecognized unit is entered:```Distance.Parse("3 this should not be valid");```This is fine, but if the number is...
View ArticleNew Post: Print Layout : print result issues
Hi, we are developing an application using DotSpatial. We have a lot of problems with the print result of the layout. The following image shows my layout configuration; my layout is composed of a map,...
View ArticleSource code checked in, #73713
- Removed BaseCollection from DotSpatial.Data. There is a same class in DotSpatial.Serialization. - Fix in unit-test
View ArticleNew Post: Print Layout : print result issues
There is a big chance that some of your differences related to these issueshttps://dotspatial.codeplex.com/workitem/22514https://dotspatial.codeplex.com/workitem/22515
View ArticleNew Post: Identify/Info
I'm basically just starting out with DotSpatial and was wondering about the Identify tool functionality. Identify appears to act only on the layer that was first added to the map. Should it work on the...
View ArticleNew Post: Some advice on adding open streetmap to my project
Still I am a bit confused on how to use the brutilelayer. I am working with dotspatial 1.6 and could not make it work. I really could not recompile the dotspatial.controls.brutilelayer with DS 1.6, it...
View ArticleNew Post: How to select lots of features and display them really fast ?
I need to select lots of features in a polygon layer (about 500 of 2000 features in a shapefile). I select them by index and it works, but it took around 1 minutes to display the selection. How can I...
View ArticleNew Post: Some advice on adding open streetmap to my project
GoogleMap has been removed from BruTile. The implementation relied on Maps API v2 which was discontinued end of November last year. Using it violated the license terms anyway. The old BruTileLayer code...
View ArticleNew Post: Cannot see .ecw file type in GDAL rasters with v1.6.0
I'm afraid that I am getting nowhere with this. Please, can you post a "Peter and Jane" level description of how to do a one-click publish of a basic DotSpatial solution (i.e. map1 + appManager1 +...
View ArticleNew Post: How to select lots of features and display them really fast ?
You can use overload Select(IEnumerable<int> featureIndices) method. var indecesToSelect = new List<int>(500); for (int i = 0; i < 500; i++) { indecesToSelect.Add(i); }...
View ArticleNew Post: Cannot see .ecw file type in GDAL rasters with v1.6.0
Try this sample solutionhttps://drive.google.com/uc?id=0B__WpJBzTq69UVRQdURoOVFKTE0&export=download
View ArticleNew Post: How to select lots of features and display them really fast ?
D'oh! I didn't look at the API carefully.
View ArticleSource code checked in, #73724
Made a seperate updater to work with the extension manager.
View Article