GithubHelp home page GithubHelp logo

Comments (3)

FObermaier avatar FObermaier commented on August 16, 2024 1

You would have to code that yourself. There is a function to compute the UTM Zone based on longitude in ProjectedCoordinateSystem that might serve as example.

from projnet4geoapi.

FObermaier avatar FObermaier commented on August 16, 2024

From the OGC WKT definition of e.g. NAD1983 SPCS Alabama I don't see what should prevent you from using this library:

// example ogc wkt for NAD83 SPCS spatial reference system 
const string spcsWkt = "PROJCS[\"NAD_1983_StatePlane_Alabama_East_FIPS_0101_Feet\",GEOGCS[\"NAD83\",DATUM[\"North_American_Datum_1983\"," +
    "SPHEROID[\"GRS 1980\",6378137,298.257222101,AUTHORITY[\"EPSG\",\"7019\"]],AUTHORITY[\"EPSG\",\"6269\"]]," +
    "PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],"+
    "AUTHORITY[\"EPSG\",\"4269\"]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"latitude_of_origin\",30.5]," +
    "PARAMETER[\"central_meridian\",-85.8333333333333],PARAMETER[\"scale_factor\",0.99996],PARAMETER[\"false_easting\",656166.666666667]," +
    "PARAMETER[\"false_northing\",0],UNIT[\"US survey foot\",0.304800609601219,AUTHORITY[\"EPSG\",\"9003\"]],AXIS[\"Easting\",EAST]," +
    "AXIS[\"Northing\",NORTH],AUTHORITY[\"ESRI\",\"102629\"]]";

var csSrc = ProjNet.CoordinateSystems.GeographicCoordinateSystem.WGS84;
var csTgt = (ProjNet.CoordinateSystems.CoordinateSystem)ProjNet.IO.CoordinateSystems.CoordinateSystemWktReader.Parse(spcsWkt);

var ct = new ProjNet.CoordinateSystems.Transformations.CoordinateTransformationFactory().CreateFromCoordinateSystems(csSrc, csTgt);

(double x, double y) = ct.MathTransform.Transform(lat, lon);

I don't have any information regarding accuracy of the transformation, though.

from projnet4geoapi.

Avetis-Av avatar Avetis-Av commented on August 16, 2024

The project I'm working can take latitude and longitude input anywhere in the US. Is it possible to determined which zone the given coordinates are in and give the specified easting and northing?

from projnet4geoapi.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.