Stereographic Polar projection

1598
9
11-28-2012 08:46 AM
ZeinaNassar
New Contributor
Any existing js / API to generate polar projection (stereographic) of a map?
0 Kudos
9 Replies
JohnGravois
Frequent Contributor
here is a list of projected coordinate system IDs...

what do you mean "generate" a projection of a map?  typically we use the JS API to refer to a map service that already has a predefined coordinate system.  ArcGISDynamicMapServiceLayers can reproject on the fly.  ArcGISTiledMapServiceLayers cannot.

you can use a geometry service to reproject a feature, if you're trying to do something else it would be helpful if you could provide some more specific details.
0 Kudos
ZeinaNassar
New Contributor
Thank you for the prompt reply. What I meant is that I am already using google maps API v3(mercator projection) to map lat/long positions. However this projection does not represent the points at the polar areas (North and South). Therefore, it would be helpful to have a polar projection to represent these polar locations (i.e. http://w4.jcommops.org/website/DBCPS/viewer.htm ) I was wondering of any implementation of such projection using javascript.
Thank you again.
0 Kudos
ZeinaNassar
New Contributor
Thank you for the prompt reply. What I meant is that I am already using google maps API v3(mercator projection) to map lat/long positions. However this projection does not represent the points at the polar areas (North and South). Therefore, it would be helpful to have a polar projection to represent these polar locations (i.e. http://w4.jcommops.org/website/DBCPS/viewer.htm ) I was wondering of any implementation of such projection using arcGIS API for javascript.
Thank you again.
0 Kudos
JohnGravois
Frequent Contributor
i couldn't really speak intelligently about the Google Maps API, but using our JavaScript API it would be a pretty simple task to publish a map service with a polar projection and display it in a web application as either a cached or dynamic map service layer.
0 Kudos
ZeinaNassar
New Contributor
Thank you again. As I am a newbie to arcGIS map service, can you please advise on references that I can look at in order to implement the polar projection.
Regards .
0 Kudos
JohnGravois
Frequent Contributor
no worries! 🙂

specifying the projection for the map is something you do in our desktop software before you even publish a map service, so here are some links to our Desktop and Server help...

once you have a service up and running, you should be able to build a simple javascript app like this sample.
0 Kudos
derekswingley1
Frequent Contributor
If you're using an ArcGIS Server service that can be projected on the fly(dynamic map service, feature service, image service) then ArcGIS Server can project your data into any projection. Here's an example of projecting the World Population Service to Arctic Polar Stereographic:  http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Demographics/ESRI_Population_World/MapSer...

And here it is being used in a simple JS API page:  http://jsfiddle.net/usst7/
0 Kudos
ZeinaNassar
New Contributor
Thank you all for the replies.
Just to confirm, in order to be able to get this projection running, we need to use ArcGIS desktop software, charges apply to get such software, correct?
Thank you.
0 Kudos
derekswingley1
Frequent Contributor
Thank you all for the replies.
Just to confirm, in order to be able to get this projection running, we need to use ArcGIS desktop software, charges apply to get such software, correct?
Thank you.


Yes. You would publish an ArcGIS Server service via ArcGIS Desktop. Neither is free.
0 Kudos