EncDotNet.S100.Crs.ProjNet 0.16.0

dotnet add package EncDotNet.S100.Crs.ProjNet --version 0.16.0
                    
NuGet\Install-Package EncDotNet.S100.Crs.ProjNet -Version 0.16.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EncDotNet.S100.Crs.ProjNet" Version="0.16.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EncDotNet.S100.Crs.ProjNet" Version="0.16.0" />
                    
Directory.Packages.props
<PackageReference Include="EncDotNet.S100.Crs.ProjNet" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add EncDotNet.S100.Crs.ProjNet --version 0.16.0
                    
#r "nuget: EncDotNet.S100.Crs.ProjNet, 0.16.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package EncDotNet.S100.Crs.ProjNet@0.16.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=EncDotNet.S100.Crs.ProjNet&version=0.16.0
                    
Install as a Cake Addin
#tool nuget:?package=EncDotNet.S100.Crs.ProjNet&version=0.16.0
                    
Install as a Cake Tool

EncDotNet.S100.Crs.ProjNet

ProjNet-backed implementation of the ICrsTransformFactory / ICrsTransform abstraction declared in EncDotNet.S100.Core (EncDotNet.S100.Pipelines namespace).

Overview

ProjNetCrsTransformFactory creates coordinate transforms using ProjNet. It supports:

  • WGS84 UTM zones — EPSG:326xx (northern hemisphere) and EPSG:327xx (southern hemisphere), the CRS S-102 / S-104 / S-111 coverage products are typically georeferenced in.
  • EPSG:4326 ↔ EPSG:3857 — geographic ↔ Web Mercator, the projection used to lay coverage rasters onto a slippy-map viewport.

Identical source/target CRS short-circuit to IdentityCrsTransform.

Why a separate package?

This implementation depends only on ProjNet — no map renderer. It previously lived inside EncDotNet.S100.Renderers.Mapsui, which made Mapsui a transitive dependency of otherwise-headless consumers (the EncDotNet.S100 facade and the s100 CLI). Hosting it here lets those consumers reproject coverage products without linking Mapsui.

Usage

using EncDotNet.S100.Crs.ProjNet;
using EncDotNet.S100.Pipelines;

ICrsTransformFactory factory = new ProjNetCrsTransformFactory();
ICrsTransform toWebMercator = factory.Create("EPSG:32608", "EPSG:3857");
var (x, y) = toWebMercator.Transform(easting, northing);
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on EncDotNet.S100.Crs.ProjNet:

Package Downloads
EncDotNet.S100

Batteries-included on-ramp for IHO S-100 nautical data: open a dataset, read its features through the bundled feature catalogue, and render it to an image with the bundled portrayal catalogue — no hand-wiring of catalogues or pipelines. Wraps EncDotNet.S100.Specifications + EncDotNet.S100.Datasets.Pipelines behind a small, format-agnostic API. Advanced users can still drop down to the readers + injected catalogues.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.16.0 100 6/8/2026