0
I Use This!
Inactive

Commits : Listings

Analyzed about 6 hours ago. based on code collected 1 day ago.
Jun 17, 2025 — Jun 17, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Upgraded three example projects (F# , C# , VB.NET) to use the new release 3.0.0. Also added some comments for the readme page about the new support for WKT-CRS. More... over 4 years ago
Updated the version number in the project files. Also updated some comments/documentation More... over 4 years ago
Added a new test class for WKT tests, and also some comments in other files regarding the usage of different units, e.g. degrees vs meters. More... over 4 years ago
Upgraded "NUnit3TestAdapter" from version 4.0.0 to 4.1.0 More... over 4 years ago
Updated the code which tries to retrieve the version from a library, and also updated related tests. More... over 4 years ago
Added more tests for the recently added WKT-CRS support. More... over 4 years ago
Added support for coordinate reference systems (CRS) defined by "Well-Known-Text". For some information about that format, see the following URL: https://en.wikipedia.org/wiki/Well-known_text_representation_of_coordinate_reference_systems#ESRI_vs_OGC Only two of the current three implementations support that format, and there may be differences in the implementations, see the section "OGC vs ESRI" at the above Wikipedia URL. This "crsTransformations-dotnet" library is just forwarding the WKT to the implementations without trying to parse of figure out whether or not the provided string is OGC or ESRI. Also added an initial test class with a test for one WKT string corresponding to the Swedish CRS "SWEREF99 TM" (EPSG 3006) and the test verifies that the results become the same, i.e. in this case the difference between OGC and ESRI does not cause any problems. Also added a test method for the library NOT supporting WKT, to verify isSuccess=false when using method "Transform" and verifies that an exception is thrown when using the method "TransformToCoordinate". More... over 4 years ago
Changed the TargetFramework to NET5 for the test/example projects, from .NET Core 2.1 or .NET Framework 4.7.2 More... over 4 years ago
Merge branches More... over 4 years ago
Minor refactoring. Moved a part of an error message to a constant. More... over 4 years ago
Renamed a private method and also renamed two variables with better names, and an error message. More... over 4 years ago
Upgraded "FSharp.Core" from version 6.0.0 to 6.0.1 More... over 4 years ago
Upgraded "Microsoft.NET.Test.Sdk" from version 16.11.0 to 17.0.0 More... over 4 years ago
Added some usage of "nameof" instead of hardcoded sring literals for argument names More... over 4 years ago
Two-step renaming of a directory with lower-cased first letter: compositeTransformations ==> CompositeTransformations Doing this in two steps to make it work for both Windows and Linux: (i.e. instead of just changing the first letter directly) 1. compositeTransformations ==> compositeTransformations_temp 2. compositeTransformations_temp ==> CompositeTransformations This is commit #2 More... over 4 years ago
Two-step renaming of a directory with lower-cased first letter: compositeTransformations ==> CompositeTransformations Doing this in two steps to make it work for both Windows and Linux: (i.e. instead of just changing the first letter directly) 1. compositeTransformations ==> compositeTransformations_temp 2. compositeTransformations_temp ==> CompositeTransformations This is commit #1 More... over 4 years ago
Two-step renaming of two unintentionally differently named directories: crsTransformations and CrsTransformations and the lower-cased version did not show up at Windows, but when using Linux there are obviously now two separate directories. Doing this in two steps and hopfully the end result will then be okay for both Windows and Linux with only one directory with an uppercased "C" i.e. CrsTransformations This commit is #2 of the two below 1. rename crsTransformations => crsTransformations_temp 2. move files from crsTransformations_temp to CrsTransformations (and delete crsTransformations_tempcrsTransformations_temp) More... over 4 years ago
Two-step renaming of two unintentionally differently named directories: crsTransformations and CrsTransformations and the lower-cased version did not show up at Windows, but when using Linux there are obviously now two separate directories. Doing this in two steps and hopfully the end result will then be okay for both Windows and Linux with only one directory with an uppercased "C" i.e. CrsTransformations This commit is #1 of the two below 1. rename crsTransformations => crsTransformations_temp 2. move files from crsTransformations_temp to CrsTransformations (and delete crsTransformations_tempcrsTransformations_temp) More... over 4 years ago
Minor edit of code example in the github readme page (formatting with spaces instead of tabs) More... over 4 years ago
Just some updates in the github readme file More... over 4 years ago
Version 2 of the following four libraries: https://www.nuget.org/packages/Programmerare.CrsTransformations.Core/2.0.0 https://www.nuget.org/packages/Programmerare.CrsTransformations.Adapter.ProjNet/2.0.0 https://www.nuget.org/packages/Programmerare.CrsTransformations.Adapter.DotSpatial/2.0.0 https://www.nuget.org/packages/Programmerare.CrsTransformations.Adapter.MightyLittleGeodesy/2.0.0 More... over 4 years ago
Version 10.036 of EPSG constants published to NuGet. https://www.nuget.org/packages/Programmerare.CrsTransformations.Constants/10.36.0 More... over 4 years ago
Updated usages of EPSG constants with the latest version 10.036 More... over 4 years ago
Downloaded the currently latest EPSG dataset version 10.036 from https://epsg.org/ and then used it for generating a new C# file with EPSG constants from my Kotlin/Java project https://github.com/TomasJohansson/crsTransformations/ Below is the URL for the "EpsgNumber.cs" file now copied into this project: https://github.com/TomasJohansson/crsTransformations/blob/master/crs-transformation-code-generation/src/main/resources/generated/csharpe_constants/Programmerare/CrsConstants/ConstantsByAreaNameNumber/v10_036/EpsgNumber.cs More... over 4 years ago
Version 10.027 of EPSG constants published to NuGet. https://www.nuget.org/packages/Programmerare.CrsTransformations.Constants/10.27.0 More... over 4 years ago
Updated usages of EPSG constants with the latest version 10.027 More... over 4 years ago
Added C# file with constants for EPSG version 10.027 which has been generated in the corresponding JVM project https://github.com/TomasJohansson/crsTransformations/ The file was copied from here: https://github.com/TomasJohansson/crsTransformations/tree/master/crs-transformation-code-generation/src/main/resources/generated/csharpe_constants/Programmerare/CrsConstants/ConstantsByAreaNameNumber/v10_027 Also labeled the previous version (9.8.9) as Obsolete More... over 4 years ago
Removed .NET 4.5 as a target framework, and then could also upgrade "FSharp.Core" to version 6.0.0 (which does not support net45) More... over 4 years ago
Upgraded "FSharp.Core" (there are later versions e.g. 5.0.2 and 6.0.0 but those are not compatible .NET Framework 4.5 which is currently one of the target frameworks) More... over 4 years ago
Upgraded "MathNet.Numerics" More... over 4 years ago