<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Oscar,<br>
Thanks for help! It's very useful!<br>
mk<br>
Oscar van Vlijmen wrote:
<blockquote cite="midC156B28A.837F%25ovv@hetnet.nl" type="cite">
  <blockquote type="cite">
    <pre wrap="">From: turek2 &lt;turek2-poczta.fm&gt;
Date: Fri, 13 Oct 2006 22:54:28 +0200
Subject: [Proj] Stereographic North Pole - EMEP Grid
    </pre>
  </blockquote>
  <pre wrap=""><!---->
  </pre>
  <blockquote type="cite">
    <pre wrap="">Has anyone defined EMEP coordinate system properly under GRASS?
Any hints are welcome!
    </pre>
  </blockquote>
  <pre wrap=""><!---->
I can't give any PROJ/GRASS details, but I can give some clues.

With some preprocessing and postprocessing the spherical form of the PROJ
projection stere can be used.

The EMEP radius of the spherical earth = 6370000 m.
There are 3 different EMEP grids; let's concentrate on the 50 km official
one.
The following projection parameters should be used in this case:
lat0=90; lon0=-32; x0=8*50000; y0=110*50000; k0=1; lat_ts=60;
The x0 and y0 are defined in kilometers, the grid cell space is 50 km, hence
the multiplication factor of 50000.
For a
lat=15; lon=17;
degrees, the stere projection should produce something like:
easting = 7283626.857; northing = -483845.535;
These values have to be converted to EMEP grid coordinates ei,ej.
First divide them by 50000:
This gives values around: 145.6725, -9.6769
Then round to integers with the nint function to get cell numbers:
-&gt; ei = 146; ej = -10.

It can be done without postprocessing by setting the radius of the sphere to
6370000/50000 m and keeping the x0,y0 in km:
lat0=90; lon0=-32; x0=8; y0=110; k0=1; lat_ts=60;
Libproj's stere then gives for lat=15, lon=17 an x,y of 145.6725, -9.6769
which still has to be rounded with a nint function if EMEP cell numbers are
required.

Read more about EMEP at:
<a class="moz-txt-link-rfc2396E" href="http://www.emep.int/grid/index.html">&lt;http://www.emep.int/grid/index.html&gt;</a>

_______________________________________________
Proj mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Proj@lists.maptools.org">Proj@lists.maptools.org</a>
<a class="moz-txt-link-freetext" href="http://lists.maptools.org/mailman/listinfo/proj">http://lists.maptools.org/mailman/listinfo/proj</a>


  </pre>
</blockquote>
<br>
</body>
</html>