Pokazywanie postów oznaczonych etykietą współrzędne. Pokaż wszystkie posty
Pokazywanie postów oznaczonych etykietą współrzędne. Pokaż wszystkie posty

05 listopada 2018

[MSSQL] Konwersja współrzędnych geograficznych na dziesiętne

Poniżej przykład konwersji współrzędnych geograficznych na współrzędne dziesiętne oraz na odwrót w mssql:

--konwersja ze stopni na  uklad dziesietny
DECLARE @sek FLOAT = 46.834
,@min FLOAT = 13
,@st FLOAT = 52
,@dec FLOAT
SET @dec = (@sek / 3600) + (@min / 60) + @st
SELECT @dec
--konwersja ukladu dziesietnego na uklad wsp geograficznych
SET @dec = 52.2296761111111
SET @st = ROUND(@dec, 0)
SET @min = floor((@dec - @st) * 60)
SET @sek = (@dec - @st - (@min / 60)) * 3600
SELECT @st 'st'
,@min 'min' --tutaj moze byc problem z zaokragleniami
,@sek 'sek'   --tutaj moze byc problem z zaokragleniami

01 stycznia 2015

[JAVA]Lokalizacja GPS w Android


 Szukając sposobu pobierania lokalizacji w Androidzie natrafiłem na dość ciekawy artykuł dotyczący wykorzystania klasy Location.
Poniżej przykład takiego użycia:
package de.vogella.android.locationsapi.simple;

import android.app.Activity;
import android.content.Context;
import android.location.Criteria;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.widget.TextView;
import android.widget.Toast;

public class ShowLocationActivity extends Activity implements LocationListener {
  private TextView latituteField;
  private TextView longitudeField;
  private LocationManager locationManager;
  private String provider;

  
/** Called when the activity is first created. */

  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    latituteField = (TextView) findViewById(R.id.TextView02);
    longitudeField = (TextView) findViewById(R.id.TextView04);

    // Get the location manager
    locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
    // Define the criteria how to select the locatioin provider -> use
    // default
    Criteria criteria = new Criteria();
    provider = locationManager.getBestProvider(criteria, false);
    Location location = locationManager.getLastKnownLocation(provider);

    // Initialize the location fields
    if (location != null) {
      System.out.println("Provider " + provider + " has been selected.");
      onLocationChanged(location);
    } else {
      latituteField.setText("Location not available");
      longitudeField.setText("Location not available");
    }
  }

  /* Request updates at startup */
  @Override
  protected void onResume() {
    super.onResume();
    locationManager.requestLocationUpdates(provider, 400, 1, this);
  }

  /* Remove the locationlistener updates when Activity is paused */
  @Override
  protected void onPause() {
    super.onPause();
    locationManager.removeUpdates(this);
  }

  @Override
  public void onLocationChanged(Location location) {
    int lat = (int) (location.getLatitude());
    int lng = (int) (location.getLongitude());
    latituteField.setText(String.valueOf(lat));
    longitudeField.setText(String.valueOf(lng));
  }

  @Override
  public void onStatusChanged(String provider, int status, Bundle extras) {
    // TODO Auto-generated method stub

  }

  @Override
  public void onProviderEnabled(String provider) {
    Toast.makeText(this, "Enabled new provider " + provider,
        Toast.LENGTH_SHORT).show();

  }

  @Override
  public void onProviderDisabled(String provider) {
    Toast.makeText(this, "Disabled provider " + provider,
        Toast.LENGTH_SHORT).show();
  }
} 

Wiecej informacji można znaleść tutaj w tym artykule